UNPKG

470 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.InvalidExceptionFilterException = void 0;
4const runtime_exception_1 = require("./runtime.exception");
5const messages_1 = require("../messages");
6class InvalidExceptionFilterException extends runtime_exception_1.RuntimeException {
7 constructor() {
8 super(messages_1.INVALID_EXCEPTION_FILTER);
9 }
10}
11exports.InvalidExceptionFilterException = InvalidExceptionFilterException;