Package com.mendix.core
Class CoreRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.mendix.systemwideinterfaces.MendixRuntimeException
com.mendix.core.CoreRuntimeException
- All Implemented Interfaces:
Serializable
Thrown when exception arises in core parts of the runtime.
- See Also:
-
Constructor Summary
ConstructorDescriptionCoreRuntimeException
(String message) Creates an exception with the specified message.CoreRuntimeException
(String message, Throwable cause) Creates an exception with the specified message and cause.CoreRuntimeException
(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
-
CoreRuntimeException
Creates an exception with the specified message and cause.- Parameters:
message
- the exception messagecause
- the underlying cause of this exception
-
CoreRuntimeException
Creates an exception with the specified message.- Parameters:
message
- the exception message
-
CoreRuntimeException
Creates an exception with the specified cause.- Parameters:
cause
- the underlying cause of this exception
-