Class WindowException

All Implemented Interfaces:
Serializable

public class WindowException extends RuntimeException
Window operations may throw a WindowException as specified in their method descriptions.
Since:
Epic 4.3
See Also:
  • Field Details

    • code

      public final short code
    • NOT_SUPPORTED_ERR

      public static final short NOT_SUPPORTED_ERR
      The implementation does not support the requested type of object or operation.
      See Also:
    • HIERARCHY_REQUEST_ERR

      public static final short HIERARCHY_REQUEST_ERR
      An attempt to insert a component in an invalid location.
      See Also:
    • WRONG_WINDOW_ERR

      public static final short WRONG_WINDOW_ERR
      A component is used in a window other than the one that created it (and doesn't support the component).
      See Also:
    • NOT_FOUND_ERR

      public static final short NOT_FOUND_ERR
      An attempt to reference a component or window in a context where it does not exist.
      See Also:
    • INVALID_COLOR_ERR

      public static final short INVALID_COLOR_ERR
      An attempt to set color with an unsupported color name or invalid RGB specification.
      See Also:
    • INVALID_MODIFICATION_ERR

      public static final short INVALID_MODIFICATION_ERR
      An attempt to modify the type of the underlying object.
      See Also:
    • NO_MODIFICATION_ALLOWED_ERR

      public static final short NO_MODIFICATION_ALLOWED_ERR
      An attempt to modify a read-only text.
      See Also:
    • NO_DOCKING_ALLOWED_ERR

      public static final short NO_DOCKING_ALLOWED_ERR
      An attempt to dock a window which is not dockable.
      Since:
      Epic 4.4.1
      See Also:
    • INVALID_DOCKING_ERR

      public static final short INVALID_DOCKING_ERR
      An attempt to dock a dockable window to a main window edge which is not enabled for the dockable window.
      Since:
      Epic 4.4.1
      See Also:
  • Constructor Details

    • WindowException

      public WindowException(short code, String message)
    • WindowException

      public WindowException(short code)