UNPKG

@freemework/common

Version:

Common library of the Freemework Project.

9 lines 356 B
import { FConfigurationException } from "./f_configuration_exception.js"; export class FConfigurationValueException extends FConfigurationException { value; constructor(value, message, key, innerException) { super(message, key, innerException); this.value = value; } } //# sourceMappingURL=f_configuration_value_exception.js.map