@freemework/common
Version:
Common library of the Freemework Project.
13 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FConfigurationException = void 0;
const index_js_1 = require("../exception/index.js");
class FConfigurationException extends index_js_1.FException {
key;
constructor(message, key, innerException) {
super(`There are a problem with configuration key '${key}'. ${message}`, innerException);
this.key = key;
}
}
exports.FConfigurationException = FConfigurationException;
//# sourceMappingURL=f_configuration_exception.js.map