ocat-lang
Version:
A programming language for the web design and development
13 lines (12 loc) • 475 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorType = void 0;
var ErrorType;
(function (ErrorType) {
ErrorType["UError"] = "Undefined Error";
ErrorType["SyntaxError"] = "Syntax Error";
ErrorType["RuntimeError"] = "Runtime Error";
ErrorType["ExecutionError"] = "Execution Error";
ErrorType["Excpetion"] = "Exception";
ErrorType["GetError"] = "GetError";
})(ErrorType || (exports.ErrorType = ErrorType = {}));