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 newIntakeErrorwithout specified detail message.IntakeError(String msg) Constructs a newIntakeErrorwith specified detail message.IntakeError(String msg, Throwable nested) Constructs a newIntakeErrorwith specified detail message and nestedThrowable.IntakeError(Throwable nested) Constructs a newIntakeErrorwith 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 newIntakeErrorwithout specified detail message. -
IntakeError
Constructs a newIntakeErrorwith specified detail message.- Parameter:
msg- The error message.
-
IntakeError
Constructs a newIntakeErrorwith specified nestedThrowable.- Parameter:
nested- The exception or error that caused this exception to be thrown.
-
IntakeError
Constructs a newIntakeErrorwith specified detail message and nestedThrowable.- Parameter:
msg- The error message.nested- The exception or error that caused this exception to be thrown.
-