Options
All
  • Public
  • Public/Protected
  • All
Menu

Class IllegalArgumentException

Thrown to indicate that a method has been invoked with an illegal argument.

throw IllegalArgumentException.create();

Must use isInstance static method instead of the instanceof to check whether an error is an instance of this class. This limitation comes from the fact that the custom exceptions inheriting from the Error class are not printed well in the console.

const e = IllegalArgumentException.create();

console.log( e instanceof IllegalArgumentException ); // => false
console.log( IllegalArgumentException.isInstance( e ) ); // => true

Hierarchy

Index

Constructors

constructor

Methods

Static create

  • create(message?: string): Error
  • Returns a new exception. The returned instance is not an instance of this class in the prototypical sense. Thus must use isInstance to check whether or not an instance is an instance of this class.

    Parameters

    • Default value message: string = this.getMessage()

      a message of a new exception

    Returns Error

    a new exception

Static getId

  • getId(): string

Static getMessage

  • getMessage(): string

Static isInstance

  • isInstance(error: Error): boolean

Generated using TypeDoc