Package org.apache.fulcrum.intake
Klasse IntakeError
java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.fulcrum.intake.IntakeError
- Alle implementierten Schnittstellen:
Serializable
Base exception thrown by the Intake service.
- Version:
- $Id$
- Autor:
- Quinton McCombs
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a newIntakeError
without specified detail message.IntakeError
(String msg) Constructs a newIntakeError
with specified detail message.IntakeError
(String msg, Throwable nested) Constructs a newIntakeError
with specified detail message and nestedThrowable
.IntakeError
(Throwable nested) Constructs a newIntakeError
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
-
IntakeError
public IntakeError()Constructs a newIntakeError
without specified detail message. -
IntakeError
Constructs a newIntakeError
with specified detail message.- Parameter:
msg
- The error message.
-
IntakeError
Constructs a newIntakeError
with specified nestedThrowable
.- Parameter:
nested
- The exception or error that caused this exception to be thrown.
-
IntakeError
Constructs a newIntakeError
with specified detail message and nestedThrowable
.- Parameter:
msg
- The error message.nested
- The exception or error that caused this exception to be thrown.
-