Package org.openapitools.client.model
Class ParseExceptionDto
- java.lang.Object
-
- org.openapitools.client.model.ParseExceptionDto
-
public class ParseExceptionDto extends Object
ParseExceptionDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_CODEstatic StringSERIALIZED_NAME_DETAILSstatic StringSERIALIZED_NAME_MESSAGEstatic StringSERIALIZED_NAME_TYPE
-
Constructor Summary
Constructors Constructor Description ParseExceptionDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParseExceptionDtocode(BigDecimal code)ParseExceptionDtodetails(Map<String,ResourceReportDto> details)booleanequals(Object o)BigDecimalgetCode()The code allows your client application to identify the error in an automated fashion.Map<String,ResourceReportDto>getDetails()A JSON Object containing list of errors and warnings occurred during deployment.StringgetMessage()A detailed message of the error.StringgetType()An exception class indicating the occurred error.inthashCode()ParseExceptionDtomessage(String message)ParseExceptionDtoputDetailsItem(String key, ResourceReportDto detailsItem)voidsetCode(BigDecimal code)voidsetDetails(Map<String,ResourceReportDto> details)voidsetMessage(String message)voidsetType(String type)StringtoString()ParseExceptionDtotype(String type)
-
-
-
Field Detail
-
SERIALIZED_NAME_DETAILS
public static final String SERIALIZED_NAME_DETAILS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MESSAGE
public static final String SERIALIZED_NAME_MESSAGE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CODE
public static final String SERIALIZED_NAME_CODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
details
public ParseExceptionDto details(Map<String,ResourceReportDto> details)
-
putDetailsItem
public ParseExceptionDto putDetailsItem(String key, ResourceReportDto detailsItem)
-
getDetails
public Map<String,ResourceReportDto> getDetails()
A JSON Object containing list of errors and warnings occurred during deployment.- Returns:
- details
-
setDetails
public void setDetails(Map<String,ResourceReportDto> details)
-
type
public ParseExceptionDto type(String type)
-
getType
public String getType()
An exception class indicating the occurred error.- Returns:
- type
-
setType
public void setType(String type)
-
message
public ParseExceptionDto message(String message)
-
getMessage
public String getMessage()
A detailed message of the error.- Returns:
- message
-
setMessage
public void setMessage(String message)
-
code
public ParseExceptionDto code(BigDecimal code)
-
getCode
public BigDecimal getCode()
The code allows your client application to identify the error in an automated fashion. You can look up the meaning of all built-in codes and learn how to add custom codes in the [User Guide](https://docs.camunda.org/manual/7.18/user-guide/process-engine/error-handling/#exception-codes).- Returns:
- code
-
setCode
public void setCode(BigDecimal code)
-
-