UnprocessableEntityException constructor

const UnprocessableEntityException(
  1. String message
)

Creates an UnprocessableEntityException with the specified message.

The message is a human-readable description of the unprocessable entity error.

Implementation

const UnprocessableEntityException(String message)
    : super(message, HttpStatus.unprocessableEntity);