Java 常見異常lllegalArgumentException
lllegalArgumentException
java.lang.lllegalArgumentException是非法參數異常,迪常是調用方法時引發(fā)的異常。當給一個 方法傳遞的參數與實際定義不相符時,會拋出lllegalArgumentException異常。
import java.io.File;
//NumberFormatException
public class Demo {
public static String createFilePath(String parent, String filename) throws IllegalArgumentException{
if (parent == null)
throw new IllegalArgumentException("文件路徑不能為空! ");
if(filename == null)
throw new IllegalArgumentException("文件名稱不能為空! ");
return parent + File.separator + filename;
}
public static void main(String[] args) {
System.out.println(Demo.createFilePath("dir1" ,"file1"));
System.out.println();
System.out.println(Demo.createFilePath(null, "file1"));
}
}
點擊加載更多評論>>