Class MendixRuntimeException

    • Constructor Summary

      Constructors 
      Constructor Description
      MendixRuntimeException()
      Creates an unchecked Mendix exception without message.
      MendixRuntimeException​(java.lang.String message)
      Creates an unchecked Mendix exception with the specified message.
      MendixRuntimeException​(java.lang.String message, java.lang.Throwable cause)
      Creates an unchecked Mendix exception with the specified message and cause.
      MendixRuntimeException​(java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MendixRuntimeException

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

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

        public MendixRuntimeException​(java.lang.String message,
                                      java.lang.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​(java.lang.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