File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/javafxlibrary/keywords/AdditionalKeywords Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ public Object find(String query, boolean failIfNotFound) {
7070 if (failIfNotFound )
7171 throw new JavaFXLibraryNonFatalException ("Unable to find anything with query: \" " + query + "\" " );
7272 return "" ;
73-
7473 } catch (JavaFXLibraryFatalException e ) {
7574 throw e ;
7675 } catch (Exception e ) {
@@ -115,6 +114,8 @@ public List<Object> findAll(String query, boolean failIfNotFound) {
115114 if (failIfNotFound )
116115 throw new JavaFXLibraryNonFatalException ("Unable to find anything with query: \" " + query + "\" " );
117116 return new ArrayList <>();
117+ } catch (JavaFXLibraryFatalException e ) {
118+ throw e ;
118119 } catch (Exception e ) {
119120 throw new JavaFXLibraryNonFatalException ("Find operation failed for query: \" " + query + "\" " , e );
120121 }
You can’t perform that action at this time.
0 commit comments