augmenttoolkit / node_modules /@nestjs /common /exceptions /intrinsic.exception.js
Leon4gr45's picture
Include updated package-lock.json (part 9)
cd6720a verified
Raw
History Blame Contribute Delete
376 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IntrinsicException = void 0;
/**
* Exception that represents an intrinsic error in the application.
* When thrown, the default exception filter will not log the error message.
*
* @publicApi
*/
class IntrinsicException extends Error {
}
exports.IntrinsicException = IntrinsicException;