Class CrudCraftRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nl.datasteel.crudcraft.runtime.exception.CrudCraftRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BadRequestException,BulkOperationException,DataIntegrityException,DuplicateResourceException,ForbiddenException,MapperException,NotImplementedException,OperationNotAllowedException,PreconditionFailedException,RelationshipException,ResourceNotFoundException,TooManyRequestsException,UnauthorizedException
Base class for all CrudCraft runtime exceptions.
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCrudCraftRuntimeException(String message) Constructs a CrudCraftRuntimeException with a default message.protectedCrudCraftRuntimeException(String message, Throwable cause) Constructs a CrudCraftRuntimeException with a message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CrudCraftRuntimeException
Constructs a CrudCraftRuntimeException with a default message. -
CrudCraftRuntimeException
Constructs a CrudCraftRuntimeException with a message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-