UNPKG
instagram-model-ts
Version:
latest (1.0.0)
1.0.0
Instagram model
instagram-model-ts
/
src
/
Model
/
Exceptions.ts
13 lines
(12 loc)
•
238 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
class
UserException
extends
Error
{
constructor
(
msg
) {
super
(msg);
this
.
name
=
"UserException"
; } }
export
class
PostException
extends
Error
{
constructor
(
msg
) {
super
(msg);
this
.
name
=
"PostException"
; } }