Options
All
  • Public
  • Public/Protected
  • All
Menu

Utility handler that can handle all input and always throws the given error.

Hierarchy

Index

Constructors

Properties

Methods

Constructors

Properties

error: HttpError<number>

Methods

  • canHandle(input: any): Promise<void>
  • Checks if the input can be handled by this class. If it cannot handle the input, rejects with an error explaining why.

    Parameters

    • input: any

      Input that could potentially be handled.

    Returns Promise<void>

    A promise resolving if the input can be handled, rejecting with an Error if not.

  • handle(): Promise<never>
  • handleSafe(input: any): Promise<never>