@teamhive/nestjs-common
Version:
Our common decorators, services, etc for NestJS projects
12 lines (11 loc) • 471 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProcessingException = void 0;
const common_1 = require("@nestjs/common");
const passive_exception_1 = require("./passive.exception");
class ProcessingException extends passive_exception_1.PassiveException {
constructor(message) {
super('ProcessingException', message || 'Processing', common_1.HttpStatus.ACCEPTED);
}
}
exports.ProcessingException = ProcessingException;