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