feat(common): add error cause option

add error cause option to UnprocessableEntityException.
This commit is contained in:
Thiago Martins
2022-10-27 17:18:54 -03:00
parent f62acac815
commit b4aca5d01f
2 changed files with 12 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 *Unprocessable Entity* type errors.
@@ -18,7 +18,7 @@ export class UnprocessableEntityException extends HttpException {
* @usageNotes
* The HTTP response status code will be 422.
* - 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 422.
@@ -31,12 +31,17 @@ export class UnprocessableEntityException 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 = 'Unprocessable Entity',
descriptionOrOptions:
| string
| HttpExceptionOptions = 'Unprocessable Entity',
) {
const { description, httpExceptionOptions } =
HttpException.extractDescriptionAndOptionsFrom(descriptionOrOptions);
super(
HttpException.createBody(
objectOrError,
@@ -44,6 +49,7 @@ export class UnprocessableEntityException extends HttpException {
HttpStatus.UNPROCESSABLE_ENTITY,
),
HttpStatus.UNPROCESSABLE_ENTITY,
httpExceptionOptions,
);
}
}

View File

@@ -20,6 +20,7 @@ import {
RequestTimeoutException,
ServiceUnavailableException,
UnauthorizedException,
UnprocessableEntityException,
} from '../../exceptions';
describe('HttpException', () => {
@@ -212,6 +213,7 @@ describe('HttpException', () => {
RequestTimeoutException,
ServiceUnavailableException,
UnauthorizedException,
UnprocessableEntityException,
];
builtInErrorClasses.forEach(ExceptionClass => {