Methods
-
getHttpStatus()
-
Returns the HTTP status to send to the client.
If the error has occurred at the client-side, the status code is used to determine the error page to show to the user.
This method is a shorthand for the following code snippet:
this.getParams().status || 500
.Returns:
The HTTP status to send to the client.
- Type
- number
-
getParams()
-
Returns the error parameters providing additional details about the error. The structure of the returned object is always situation-dependent, but the returned object usually contains the
status: number
field which represents the HTTP status to send to the client.- See:
-
- getHttpStatus
Returns:
The route parameters of the route at which the error has occurred.
- Type
- Object.<string, *>