void errorCheck(String arg){
try{
String.intValue(arg);
}catch(NullPointerdException e){
throw new LogicalException(“ERROR_CODE”);
}catch(NumberFormatException e){
throw new LogicalException(“ERROR_CODE”);
}
}
その他
void errorCheck(String arg){
try{
String.intValue(arg);
}catch(NullPointerdException e){
throw new LogicalException(“ERROR_CODE”);
}catch(NumberFormatException e){
throw new LogicalException(“ERROR_CODE”);
}
}
その他
コメント
納豆キャベツトライ