Package com.sodius.mdw.core
Class CoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sodius.mdw.internal.core.eval.filter.FilteredException
-
- com.sodius.mdw.core.CoreException
-
- All Implemented Interfaces:
Serializable
public class CoreException extends com.sodius.mdw.internal.core.eval.filter.FilteredExceptionA checked exception representing a failure.This class is not intended to be subclassed by clients but may be instantiated.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CoreException(String message)Constructs aCoreExceptionwith the specified detail message.CoreException(String message, Throwable cause)Constructs aCoreExceptionwith the specified detail message and the specified cause.CoreException(Throwable cause)Constructs aCoreExceptionwith the specified cause.
-
Method Summary
-
Methods inherited from class com.sodius.mdw.internal.core.eval.filter.FilteredException
printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CoreException
public CoreException(String message)
Constructs aCoreExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
CoreException
public CoreException(Throwable cause)
Constructs aCoreExceptionwith the specified cause.- Parameters:
cause- the cause.
-
-