src/chain-of-responsibility/validator-factory/error/validation-type-not-found-error.ts
Error
Properties |
constructor(_message: string)
|
||||||||
Parameters :
|
Public message |
message:
|
Type : string
|
Public name |
name:
|
Type : string
|
export class ValidationTypeNotFoundError implements Error {
private _name: string = 'ValidationTypeNotFoundError';
public constructor(private _message: string = 'Validation Type not found.') { }
public get name(): string {
return this._name;
}
public get message(): string {
return this._message;
}
}