UNPKG
discord-ghost
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
A headless Discord-RPC client for Destiny 2
github.com/brakacai/discord-ghost
brakacai/discord-ghost
discord-ghost
/
test
/
SystemError.ts
12 lines
(11 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** ** * Basic implementation of https://nodejs.org/api/errors.html#errors_class_systemerror */
export
class
SystemError
extends
Error
{
public
code
?:
string
;
public
constructor
(
name
?:
string
,
code
?:
string
) {
super
(name);
this
.
code
= code; } }