@intuitionrobotics/ts-common
Version:
18 lines • 726 B
JavaScript
import { Dispatcher } from "./dispatcher.js";
export var ServerErrorSeverity;
(function (ServerErrorSeverity) {
ServerErrorSeverity["Debug"] = "Debug";
ServerErrorSeverity["Info"] = "Info";
ServerErrorSeverity["Warning"] = "Warning";
ServerErrorSeverity["Error"] = "Error";
ServerErrorSeverity["Critical"] = "Critical";
})(ServerErrorSeverity || (ServerErrorSeverity = {}));
export const ServerErrorSeverity_Ordinal = [
ServerErrorSeverity.Debug,
ServerErrorSeverity.Info,
ServerErrorSeverity.Warning,
ServerErrorSeverity.Error,
ServerErrorSeverity.Critical
];
export const dispatch_onServerError = new Dispatcher("__processApplicationError");
//# sourceMappingURL=error-handling.js.map