@freemework/common
Version:
Common library of the Freemework Project.
9 lines • 350 B
JavaScript
import { FException } from "../exception/index.js";
export class FConfigurationException extends FException {
key;
constructor(message, key, innerException) {
super(`There are a problem with configuration key '${key}'. ${message}`, innerException);
this.key = key;
}
}
//# sourceMappingURL=f_configuration_exception.js.map