@freemework/common
Version:
Common library of the Freemework Project.
13 lines • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FConfigurationValueException = void 0;
const f_configuration_exception_js_1 = require("./f_configuration_exception.js");
class FConfigurationValueException extends f_configuration_exception_js_1.FConfigurationException {
value;
constructor(value, message, key, innerException) {
super(message, key, innerException);
this.value = value;
}
}
exports.FConfigurationValueException = FConfigurationValueException;
//# sourceMappingURL=f_configuration_value_exception.js.map