Class CoreException

All Implemented Interfaces:
Serializable

public class CoreException extends MendixException
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 Details

    • CoreException

      public CoreException()
      Creates an exception without a message or cause.
    • CoreException

      public CoreException(String message)
      Creates an exception with the specified message.
      Parameters:
      message - the exception message
    • CoreException

      public CoreException(Throwable cause)
      Creates an exception with the specified cause.
      Parameters:
      cause - the underlying cause of this exception
    • CoreException

      public CoreException(String message, Throwable cause)
      Creates an exception with the specified message and cause.
      Parameters:
      message - the exception message
      cause - the underlying cause of this exception