Package org.fest.swing.exception
Class ComponentLookupException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.fest.swing.exception.ComponentLookupException
- All Implemented Interfaces:
Serializable
Understands an error thrown when looking up a component using a
ComponentFinder
.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionComponentLookupException
(String message) Creates a new
.ComponentLookupException
ComponentLookupException
(String message, Collection<? extends Component> found) Creates a newComponentLookupException
. -
Method Summary
Modifier and TypeMethodDescriptionfinal Collection<? extends Component>
found()
Returns theComponent
s found by the lookup (if any.)Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
found
-
-
Constructor Details
-
ComponentLookupException
Creates a newComponentLookupException
.- Parameters:
message
- the detail message.found
- theComponent
s found by the lookup (if any.)
-
ComponentLookupException
Creates a new
.ComponentLookupException
- Parameters:
message
- the detail message.
-
-
Method Details
-
found
Returns theComponent
s found by the lookup (if any.)- Returns:
- the
Component
s found by the lookup (if any.)
-