JavaPatternMatching/examples/achim/TryCatch.jav

10 lines
91 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class TryCatch{
test(){
try{
i;
i=0;
}catch(e){
e.printStackTrace();
}
}
}