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