Is the following possible?
try
(* danger zone *)
with Not_found e ->
(* code to handle not found *)
with t ->
(* code to handle all other issues *)
If I type this in the top layer, I will get a syntax error in the second with. Perhaps there is some kind of syntax that I don't know about?
Is the preferred method to add another tryto match each with?
source
share