Class FocusVetoException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    AppBusyException

    public class FocusVetoException
    extends FocusException
    Focus veto exception event when focus was rejected by a focus veto capable party.
    Author:
    Christopher Mindus
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      ConstructorDescription
      FocusVetoException​(GProp<?> property)
      Creates a focus veto exception with an empty detail message.
      FocusVetoException​(GProp<?> property, java.lang.String message)
      Creates a focus veto exception with a message.
      FocusVetoException​(GProp<?> property, java.lang.String message, java.lang.Throwable exception)
      Creates a focus veto exception with a message and an exception cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

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

      • FocusVetoException

        public FocusVetoException​(GProp<?> property)
        Creates a focus veto exception with an empty detail message.
        Parameters:
        property - the originator property.
        Throws:
        java.lang.NullPointerException - if property parameter is null.
      • FocusVetoException

        public FocusVetoException​(GProp<?> property,
                                  java.lang.String message)
        Creates a focus veto exception with a message.
        Parameters:
        property - the originator property.
        message - the detail message.
        Throws:
        java.lang.NullPointerException - if property parameter is null.
      • FocusVetoException

        public FocusVetoException​(GProp<?> property,
                                  java.lang.String message,
                                  java.lang.Throwable exception)
        Creates a focus veto exception with a message and an exception cause.
        Parameters:
        property - the originator property.
        message - the detail message.
        exception - the exception, i.e. the real cause.
        Throws:
        java.lang.NullPointerException - if property parameter is null.