Package com.iizix.gyro
Class FocusException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.iizix.prop.PropException
com.iizix.gyro.FocusException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- FocusVetoException
Focus exception event when focus cannot be changed.
- Author:
- Christopher Mindus
- See Also:
- Constructor SummaryConstructorsConstructorDescription- FocusException- (GProp<?> property) Creates a focus exception with an empty detail message.- FocusException- (GProp<?> property, String message) Creates a focus exception with a message.- FocusException- (GProp<?> property, String message, Throwable exception) Creates a focus exception with a message and an exception cause.
- Method Summary- Methods inherited from class com.iizix.prop.PropException- getProperty, toString- Methods inherited from class java.lang.Throwable- addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
- Constructor Details- FocusExceptionCreates a focus exception with an empty detail message.- Parameters:
- property- the originator property.
- Throws:
- NullPointerException- if- propertyparameter is null.
 
- FocusExceptionCreates a focus exception with a message.- Parameters:
- property- the originator property.
- message- the detail message.
- Throws:
- NullPointerException- if- propertyparameter is null.
 
- FocusExceptionCreates a focus 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:
- NullPointerException- if- propertyparameter is null.