UNPKG
antd-theme
Version:
latest (0.3.4)
next (0.3.0-3)
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.3.0-3
0.3.0-2
0.3.0-1
0.3.0-0
0.2.0
0.1.2
0.1.0
Provide runtime dynamic theme for ant design.
wuzekang.github.io/antd-theme
antd-theme
/
plugin
/
runtimeError.js
15 lines
(13 loc)
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class
RuntimeError
extends
Error
{
constructor
({ type, message, index, filename, line, column, }) {
super
(message);
this
.type = type ||
'Runtime'
;
this
.index = index;
this
.filename = filename;
this
.line = line;
this
.column = column; } } module.exports = RuntimeError;