File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1924,6 +1924,11 @@ PREDICATE(r_eval_, 1)
1924
1924
throw PlException (PlTerm_string (ex.what ())) ;
1925
1925
return false ;
1926
1926
}
1927
+ catch (...)
1928
+ {
1929
+ throw PlException (PlTerm_string (" unknown exception" )) ;
1930
+ return false ;
1931
+ }
1927
1932
1928
1933
return true ;
1929
1934
}
@@ -1956,6 +1961,11 @@ PREDICATE(r_eval_, 2)
1956
1961
throw PlException (PlTerm_string (ex.what ())) ;
1957
1962
return false ;
1958
1963
}
1964
+ catch (...)
1965
+ {
1966
+ throw PlException (PlTerm_string (" unknown exception" )) ;
1967
+ return false ;
1968
+ }
1959
1969
1960
1970
try
1961
1971
{
@@ -1970,6 +1980,11 @@ PREDICATE(r_eval_, 2)
1970
1980
throw PlException (PlTerm_string (ex.what ())) ;
1971
1981
return false ;
1972
1982
}
1983
+ catch (...)
1984
+ {
1985
+ throw PlException (PlTerm_string (" unknown exception" )) ;
1986
+ return false ;
1987
+ }
1973
1988
1974
1989
return true ;
1975
1990
}
You can’t perform that action at this time.
0 commit comments