Package com.mendix.core
Class CoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.mendix.systemwideinterfaces.MendixException
com.mendix.core.CoreException
- All Implemented Interfaces:
Serializable
Checked variant of CoreRuntimeException. Use of this exception is not encouraged
as occurrences of this exception will be turned into non-checked variants (either CoreRuntimeException
or MendixRuntimeException).
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an exception without a message or cause.CoreException
(String message) Creates an exception with the specified message.CoreException
(String message, Throwable cause) Creates an exception with the specified message and cause.CoreException
(Throwable cause) Creates an exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CoreException
public CoreException()Creates an exception without a message or cause. -
CoreException
Creates an exception with the specified message.- Parameters:
message
- the exception message
-
CoreException
Creates an exception with the specified cause.- Parameters:
cause
- the underlying cause of this exception
-
CoreException
Creates an exception with the specified message and cause.- Parameters:
message
- the exception messagecause
- the underlying cause of this exception
-