netkitty
Version:
Network tools kit
13 lines (12 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActionNotFoundError = void 0;
const ErrorCode_1 = require("./common/ErrorCode");
class ActionNotFoundError extends Error {
constructor() {
super(...arguments);
this.errno = ErrorCode_1.ErrorCode.E_ACTION_NOT_FOUND.errno;
this.code = ErrorCode_1.ErrorCode.E_ACTION_NOT_FOUND.code;
}
}
exports.ActionNotFoundError = ActionNotFoundError;