Package org.apache.fulcrum.intake
Class IntakeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.fulcrum.intake.IntakeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidMaskException
,ValidationException
Base exception thrown by the Intake service.
- Version:
- $Id$
- Author:
- Quinton McCombs
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newIntakeException
without specified detail message.IntakeException
(String msg) Constructs a newIntakeException
with specified detail message.IntakeException
(String msg, Throwable nested) Constructs a newIntakeException
with specified detail message and nestedThrowable
.IntakeException
(Throwable nested) Constructs a newIntakeException
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
-
IntakeException
public IntakeException()Constructs a newIntakeException
without specified detail message. -
IntakeException
Constructs a newIntakeException
with specified detail message.- Parameters:
msg
- The error message.
-
IntakeException
Constructs a newIntakeException
with specified nestedThrowable
.- Parameters:
nested
- The exception or error that caused this exception to be thrown.
-
IntakeException
Constructs a newIntakeException
with specified detail message and nestedThrowable
.- Parameters:
msg
- The error message.nested
- The exception or error that caused this exception to be thrown.
-