10 lines
91 B
Plaintext
10 lines
91 B
Plaintext
|
class TryCatch{
|
||
|
test(){
|
||
|
try{
|
||
|
i;
|
||
|
i=0;
|
||
|
}catch(e){
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
}
|
||
|
}
|