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) {
70
70
if (failIfNotFound )
71
71
throw new JavaFXLibraryNonFatalException ("Unable to find anything with query: \" " + query + "\" " );
72
72
return "" ;
73
-
74
73
} catch (JavaFXLibraryFatalException e ) {
75
74
throw e ;
76
75
} catch (Exception e ) {
@@ -115,6 +114,8 @@ public List<Object> findAll(String query, boolean failIfNotFound) {
115
114
if (failIfNotFound )
116
115
throw new JavaFXLibraryNonFatalException ("Unable to find anything with query: \" " + query + "\" " );
117
116
return new ArrayList <>();
117
+ } catch (JavaFXLibraryFatalException e ) {
118
+ throw e ;
118
119
} catch (Exception e ) {
119
120
throw new JavaFXLibraryNonFatalException ("Find operation failed for query: \" " + query + "\" " , e );
120
121
}
You can’t perform that action at this time.
0 commit comments