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 SummaryConstructors Constructor Description IntakeException()Constructs a newIntakeExceptionwithout specified detail message.IntakeException(String msg)Constructs a newIntakeExceptionwith specified detail message.IntakeException(String msg, Throwable nested)Constructs a newIntakeExceptionwith specified detail message and nestedThrowable.IntakeException(Throwable nested)Constructs a newIntakeExceptionwith specified nestedThrowable.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
IntakeExceptionpublic IntakeException() Constructs a newIntakeExceptionwithout specified detail message.
 - 
IntakeExceptionpublic IntakeException(String msg) Constructs a newIntakeExceptionwith specified detail message.- Parameters:
- msg- The error message.
 
 - 
IntakeExceptionpublic IntakeException(Throwable nested) Constructs a newIntakeExceptionwith specified nestedThrowable.- Parameters:
- nested- The exception or error that caused this exception to be thrown.
 
 - 
IntakeExceptionpublic IntakeException(String msg, Throwable nested) Constructs a newIntakeExceptionwith specified detail message and nestedThrowable.- Parameters:
- msg- The error message.
- nested- The exception or error that caused this exception to be thrown.
 
 
- 
 
-