UNPKG
ppurio
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.2
1.0.1
1.0.0
뿌리오 비공식 메세지 전송 API 라이브러리
github.com/ndotcom/ppurio
ndotcom/ppurio
ppurio
/
src
/
PpurioException.ts
12 lines
(9 loc)
•
253 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
class
PpurioException
extends
Error
{
code
:
string
;
constructor
(
message
:
string
,
code
:
string
) {
super
(message);
Object
.
setPrototypeOf
(
this
,
PpurioException
.
prototype
);
this
.
name
=
"PpurioException"
;
this
.
code
= code; } }