feat(common): add error cause option

add error cause option to ImATeapotException.
This commit is contained in:
Thiago Martins
2022-10-27 16:56:50 -03:00
parent 0328a5c031
commit 11d276368a
2 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import { HttpStatus } from '../enums/http-status.enum';
import { HttpException } from './http.exception';
import { HttpException, HttpExceptionOptions } from './http.exception';
/**
* Defines an HTTP exception for *ImATeapotException* type errors.
@@ -21,7 +21,7 @@ export class ImATeapotException extends HttpException {
* @usageNotes
* The HTTP response status code will be 418.
* - The `objectOrError` argument defines the JSON response body or the message string.
* - The `description` argument contains a short description of the HTTP error.
* - The `descriptionOrOptions` argument contains either a short description of the HTTP error or an options object used to provide an underlying error cause.
*
* By default, the JSON response body contains two properties:
* - `statusCode`: this will be the value 418.
@@ -34,12 +34,15 @@ export class ImATeapotException extends HttpException {
* and return it as the JSON response body.
*
* @param objectOrError string or object describing the error condition.
* @param description a short description of the HTTP error.
* @param descriptionOrOptions either a short description of the HTTP error or an options object used to provide an underlying error cause
*/
constructor(
objectOrError?: string | object | any,
description = `I'm a teapot`,
descriptionOrOptions: string | HttpExceptionOptions = `I'm a teapot`,
) {
const { description, httpExceptionOptions } =
HttpException.extractDescriptionAndOptionsFrom(descriptionOrOptions);
super(
HttpException.createBody(
objectOrError,
@@ -47,6 +50,7 @@ export class ImATeapotException extends HttpException {
HttpStatus.I_AM_A_TEAPOT,
),
HttpStatus.I_AM_A_TEAPOT,
httpExceptionOptions,
);
}
}

View File

@@ -8,6 +8,7 @@ import {
GoneException,
HttpException,
HttpVersionNotSupportedException,
ImATeapotException,
NotFoundException,
} from '../../exceptions';
@@ -189,6 +190,7 @@ describe('HttpException', () => {
GatewayTimeoutException,
GoneException,
HttpVersionNotSupportedException,
ImATeapotException,
];
builtInErrorClasses.forEach(ExceptionClass => {