Package org.camunda.bpm.engine.rest.dto
Class ExceptionDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.ExceptionDto
-
- Direct Known Subclasses:
AuthorizationExceptionDto,MigratingProcessInstanceValidationExceptionDto,MigrationPlanValidationExceptionDto,ParseExceptionDto
public class ExceptionDto extends Object
- Author:
- nico.rehwaldt
-
-
Constructor Summary
Constructors Constructor Description ExceptionDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExceptionDtofromException(Exception e)static ExceptionDtofromException(Throwable e)StringgetMessage()StringgetType()voidsetMessage(String message)voidsetType(String type)
-
-
-
Method Detail
-
getType
public String getType()
-
getMessage
public String getMessage()
-
fromException
public static ExceptionDto fromException(Exception e)
-
fromException
public static ExceptionDto fromException(Throwable e)
-
setType
public void setType(String type)
-
setMessage
public void setMessage(String message)
-
-