Package org.apache.fulcrum.intake
Klasse IntakeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.fulcrum.intake.IntakeException
- Alle implementierten Schnittstellen:
Serializable
- Bekannte direkte Unterklassen:
InvalidMaskException
,ValidationException
Base exception thrown by the Intake service.
- Version:
- $Id$
- Autor:
- Quinton McCombs
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs 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
. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
IntakeException
public IntakeException()Constructs a newIntakeException
without specified detail message. -
IntakeException
Constructs a newIntakeException
with specified detail message.- Parameter:
msg
- The error message.
-
IntakeException
Constructs a newIntakeException
with specified nestedThrowable
.- Parameter:
nested
- The exception or error that caused this exception to be thrown.
-
IntakeException
Constructs a newIntakeException
with specified detail message and nestedThrowable
.- Parameter:
msg
- The error message.nested
- The exception or error that caused this exception to be thrown.
-