UNPKG
@atlaskit/build-utils
Version:
latest (2.6.2)
2.6.2
2.6.1
2.6.0
2.5.0
2.4.0
2.3.0
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.12.1
1.12.0
1.11.0
1.7.0
1.3.0
1.2.0
1.0.0
Collection of utilities to used during the release process of Atlaskit
@atlaskit/build-utils
/
errors.ts
10 lines
(8 loc)
•
215 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** Error utils */
/* Allow us to handle validation errors specifically */
export
class
ValidationError
extends
Error
{
constructor
(
message
:
string
) {
super
(message);
this
.
name
=
'ValidationError'
; } }