Package com.mendix.systemwideinterfaces
Class MendixRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.mendix.systemwideinterfaces.MendixRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConcurrentModificationRuntimeException
,CoreRuntimeException
,DataValidationRuntimeException
,SecurityRuntimeException
,UniqueConstraintViolationRuntimeException
,UserException
Provides a generic, unchecked Mendix exception.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an unchecked Mendix exception without message.MendixRuntimeException
(String message) Creates an unchecked Mendix exception with the specified message.MendixRuntimeException
(String message, Throwable cause) Creates an unchecked Mendix exception with the specified message and cause.MendixRuntimeException
(Throwable cause) Creates an unchecked Mendix exception without a message, 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
-
MendixRuntimeException
public MendixRuntimeException()Creates an unchecked Mendix exception without message. -
MendixRuntimeException
Creates an unchecked Mendix exception with the specified message.- Parameters:
message
- the error message
-
MendixRuntimeException
Creates an unchecked Mendix exception with the specified message and cause. The stack trace is removed to conserve space, because it is already present in the cause.- Parameters:
message
- the error message of this exceptioncause
- the exception that caused this exception
-
MendixRuntimeException
Creates an unchecked Mendix exception without a message, with the specified cause. The stack trace is removed to conserve space, because it is already present in the cause.- Parameters:
cause
- the exception that caused this exception
-