@freemework/common
Version:
Common library of the Freemework Project.
11 lines (8 loc) • 338 B
text/typescript
import { FException } from "../exception/index.js";
export class FConfigurationException extends FException {
public readonly key: string;
public constructor(message: string, key: string, innerException?: FException) {
super(`There are a problem with configuration key '${key}'. ${message}`, innerException);
this.key = key;
}
}