UNPKG
acorn-api
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
University of Toronto Acorn API
github.com/huchenlei/acorn-api-js
huchenlei/acorn-api-js
acorn-api
/
src
/
AcornError.ts
11 lines
(10 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Created by Charlie on 2017-09-22. */
export
class
AcornError
implements
Error
{
name
:
string
=
'AcornError'
;
message
:
string
;
public
constructor
(
message
:
string
) {
this
.
message
= message; } }