File

src/chain-of-responsibility/validator-factory/error/validation-type-not-found-error.ts

Implements

Error

Index

Properties

Constructor

constructor(_message: string)
Parameters :
Name Type Optional Description
_message string

Properties

Public message
message: string
Type : string
Public name
name: string
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;
  }
}

results matching ""

    No results matching ""