This commit is contained in:
obvTiger 2025-01-21 14:00:09 +01:00
commit 47f67eea8c
43 changed files with 5819 additions and 0 deletions

10
lib/BlueprintError.js Normal file
View 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;