Package org.apache.fulcrum.intake
Class IntakeRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.fulcrum.intake.IntakeRuntimeException
- All Implemented Interfaces:
Serializable
Base runtime exception thrown by the Intake service.
- Version:
- $Id$
- Author:
- Eric Pugh
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newIntakeRuntimeException
without specified detail message.Constructs a newIntakeRuntimeException
with specified detail message.IntakeRuntimeException
(String msg, Throwable nested) Constructs a newIntakeRuntimeException
with specified detail message and nestedThrowable
.IntakeRuntimeException
(Throwable nested) Constructs a newIntakeRuntimeException
with specified nestedThrowable
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IntakeRuntimeException
public IntakeRuntimeException()Constructs a newIntakeRuntimeException
without specified detail message. -
IntakeRuntimeException
Constructs a newIntakeRuntimeException
with specified detail message.- Parameters:
msg
- The error message.
-
IntakeRuntimeException
Constructs a newIntakeRuntimeException
with specified nestedThrowable
.- Parameters:
nested
- The exception or error that caused this exception to be thrown.
-
IntakeRuntimeException
Constructs a newIntakeRuntimeException
with specified detail message and nestedThrowable
.- Parameters:
msg
- The error message.nested
- The exception or error that caused this exception to be thrown.
-