Sign in
◑
Theme
apache
/
casbin-jcasbin-aviatorscript
/
refs/heads/master
/
.
/
src
/
test
/
resources
/
scripts
/
try_catch7.av
blob: bcd09a0c6ab1f78c54fff438e9137453102593c7 [
file
]
try
{
throw
new
java
.
io
.
IOException
(
"test"
);
}
catch
(
IllegalArgumentException
|
ClassCastException
e
)
{
return
1
;
}
catch
(
IllegalStateException
|
ArrayIndexOutOfBoundsException
|
java
.
io
.
IOException
e
)
{
pst
(
e
);
return
2
;
}
catch
(
e
)
{
return
3
;
}