get name()

The `get` accessor obtains error name

ValidationError.prototype.name

The get accessor obtains error name of a string type, set to 'ValidationError' that is being thrown.

validation-error.class.ts
public get name(): string {
  return 'ValidationError';
}

Return type

Returns

The return value is the error instance name of string type.

Example usage

// Example usage.
import { ValidationError } from '@angular-package/error';

// Returns "ValidationError".
new ValidationError('problem', 'Fix accessor.').name;

Last updated