Uses of Class
org.kiwiproject.jaxrs.exception.ErrorMessage
-
Packages that use ErrorMessage Package Description org.kiwiproject.jaxrs.exception -
-
Uses of ErrorMessage in org.kiwiproject.jaxrs.exception
Methods in org.kiwiproject.jaxrs.exception that return ErrorMessage Modifier and Type Method Description static ErrorMessageErrorMessage. valueOf(Map<String,Object> props)Build anErrorMessagefrom the given map of properties, whose keys must correspond to the property names and whose values must have the expected type.Methods in org.kiwiproject.jaxrs.exception that return types with arguments of type ErrorMessage Modifier and Type Method Description List<ErrorMessage>JaxrsException. getErrors()Method parameters in org.kiwiproject.jaxrs.exception with type arguments of type ErrorMessage Modifier and Type Method Description static JaxrsValidationExceptionJaxrsValidationException. ofErrorMessages(List<ErrorMessage> errorMessages)Factory method to create validation exception from a non-null list ofErrorMessage.protected voidJaxrsException. setErrors(List<ErrorMessage> errorMessages)Change theErrorMessageobjects contained in this exception.Constructors in org.kiwiproject.jaxrs.exception with parameters of type ErrorMessage Constructor Description JaxrsException(ErrorMessage error)New instance with given ErrorMessage.JaxrsException(ErrorMessage error, Throwable cause)New instance with given ErrorMessage and Throwable.Constructor parameters in org.kiwiproject.jaxrs.exception with type arguments of type ErrorMessage Constructor Description JaxrsException(List<ErrorMessage> errors, Integer statusCode)New "aggregate" instance with given list of ErrorMessage objects.JaxrsValidationException(List<ErrorMessage> errorMessages)New instance with givenErrorMessageobjects.
-