Package org.localify.common.exceptions
Class InternalProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.localify.common.exceptions.AbstractLocalifyException
org.localify.common.exceptions.InternalProcessingException
- All Implemented Interfaces:
Serializable
@ResponseStatus(INTERNAL_SERVER_ERROR)
public class InternalProcessingException
extends AbstractLocalifyException
Exception thrown when an internal processing error occurs.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new InternalProcessingException with a default message.InternalProcessingException(String message) Constructs a new InternalProcessingException with the specified message.Constructs a new InternalProcessingException with the specified 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
-
InternalProcessingException
public InternalProcessingException()Constructs a new InternalProcessingException with a default message. -
InternalProcessingException
Constructs a new InternalProcessingException with the specified cause.- Parameters:
cause- The cause.
-
InternalProcessingException
Constructs a new InternalProcessingException with the specified message.- Parameters:
message- The detail message.
-