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
public class IntakeException extends Exception
Base exception thrown by the Intake service.- Version:
- $Id$
- Author:
- Quinton McCombs
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntakeException()
Constructs 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 Detail
-
IntakeException
public IntakeException()
Constructs a newIntakeException
without specified detail message.
-
IntakeException
public IntakeException(String msg)
Constructs a newIntakeException
with specified detail message.- Parameters:
msg
- The error message.
-
IntakeException
public IntakeException(Throwable nested)
Constructs a newIntakeException
with specified nestedThrowable
.- Parameters:
nested
- The exception or error that caused this exception to be thrown.
-
IntakeException
public IntakeException(String msg, Throwable nested)
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.
-
-