Class LayerFatalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.daffodil.api.layers.exceptions.LayerFatalException
- All Implemented Interfaces:
Serializable
This is used to encapsulate runtime exceptions that are thrown out of layer code.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLayerFatalException
(String message) LayerFatalException
(String message, Throwable cause) LayerFatalException
(Throwable cause) When constructed with just a cause, we also pass a message if the cause provides one because the SLF4J logging system doesn't synthesize a message from the cause if only a cause is provided. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LayerFatalException
- Parameters:
message
- String for exception
-
LayerFatalException
When constructed with just a cause, we also pass a message if the cause provides one because the SLF4J logging system doesn't synthesize a message from the cause if only a cause is provided.- Parameters:
cause
- throwable for exception
-
LayerFatalException
-