@intuitionrobotics/ts-common
Version:
21 lines • 938 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.dispatch_onServerError = exports.ServerErrorSeverity_Ordinal = exports.ServerErrorSeverity = void 0;
const dispatcher_1 = require("./dispatcher");
var ServerErrorSeverity;
(function (ServerErrorSeverity) {
ServerErrorSeverity["Debug"] = "Debug";
ServerErrorSeverity["Info"] = "Info";
ServerErrorSeverity["Warning"] = "Warning";
ServerErrorSeverity["Error"] = "Error";
ServerErrorSeverity["Critical"] = "Critical";
})(ServerErrorSeverity || (exports.ServerErrorSeverity = ServerErrorSeverity = {}));
exports.ServerErrorSeverity_Ordinal = [
ServerErrorSeverity.Debug,
ServerErrorSeverity.Info,
ServerErrorSeverity.Warning,
ServerErrorSeverity.Error,
ServerErrorSeverity.Critical
];
exports.dispatch_onServerError = new dispatcher_1.Dispatcher("__processApplicationError");
//# sourceMappingURL=error-handling.js.map