node-web-mvc
Version:
node spring mvc
14 lines (13 loc) • 510 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const Exception_1 = __importDefault(require("./Exception"));
class UnsupportReturnValueHandlerError extends Exception_1.default {
constructor(message, returnValue) {
super(message);
this.returnValue = returnValue;
}
}
exports.default = UnsupportReturnValueHandlerError;