UNPKG

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