Skip to content

Instantly share code, notes, and snippets.

Created December 2, 2012 08:19
Show Gist options
  • Save anonymous/4187704 to your computer and use it in GitHub Desktop.
Save anonymous/4187704 to your computer and use it in GitHub Desktop.
// メソッドA
public void A(){
try{
処理A;
} catch (Exception e){
try{
処理C;
} catch(Exception e1){
e.printStackTrace();
}
}
}
// メソッドB
public void B(){
try{
処理B;
} catch (Exception e){
try{
処理C;
} catch(Exception e1){
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment