release
This commit is contained in:
commit
47f67eea8c
43 changed files with 5819 additions and 0 deletions
10
lib/BlueprintError.js
Normal file
10
lib/BlueprintError.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
class BlueprintError extends Error {
|
||||
constructor(message, line = null, column = null) {
|
||||
super(message);
|
||||
this.name = "BlueprintError";
|
||||
this.line = line;
|
||||
this.column = column;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = BlueprintError;
|
Loading…
Add table
Add a link
Reference in a new issue