UNPKG
blackduck-rest-api
Version:
latest (1.0.2)
1.0.2
1.0.1
A rest API for BlackDuck
github.com/deepan10/blackduck-rest-api
deepan10/blackduck-rest-api
blackduck-rest-api
/
src
/
exception.ts
11 lines
(9 loc)
•
242 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
BlackDuckAPIException
extends
Error
{
public
status
:
number
;
public
message
:
string
;
constructor
(
status
:
number
,
message
:
string
) {
super
(message);
this
.
status
= status;
this
.
message
= message; } }