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

public class MendixRuntimeException extends RuntimeException
Provides a generic, unchecked Mendix exception.
See Also:
  • Constructor Details

    • MendixRuntimeException

      public MendixRuntimeException()
      Creates an unchecked Mendix exception without message.
    • MendixRuntimeException

      public MendixRuntimeException(String message)
      Creates an unchecked Mendix exception with the specified message.
      Parameters:
      message - the error message
    • MendixRuntimeException

      public MendixRuntimeException(String message, Throwable cause)
      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 exception
      cause - the exception that caused this exception
    • MendixRuntimeException

      public MendixRuntimeException(Throwable cause)
      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