UNPKG
@unq-ui/instagram-model-js
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Instagram model
@unq-ui/instagram-model-js
/
src
/
Model
/
Exceptions.js
13 lines
(12 loc)
•
238 B
JavaScript
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"
; } }