blob: 0af17ae430d6c59b5b10543d9adb9faa9b52b68b [file]
## examples/multi_catch.av
try {
throw new java.io.IOException("test");
} catch(IllegalArgumentException | IllegalStateException | java.io.IOException e) {
pst(e);
}