coffee-core
Version:
Coffee IT API core library
16 lines • 432 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StatusException = void 0;
class StatusException extends Error {
status;
message;
type;
constructor(status, message, type) {
super(message);
this.status = status;
this.message = message;
this.type = type;
}
}
exports.StatusException = StatusException;
//# sourceMappingURL=status-exception.js.map