編寫一個運行時異常,並在程序中使用

//編寫一個運行時異常,並在程序中使用
public class ExceptionTest {
    public static void main(String[] args) {
        int x=0;
        divide(x);
    }

    private static int  divide(int x) {
        int num=1000;
        if(x==0){
           throw new BadInputException();
        }
        return num/x;
    }
}
public class BadInputException extends RuntimeException{
    //構造方法
    public BadInputException(){
    }
    public BadInputException(String msg){
        super(msg);
    }
}

 

總結:運行時異常,則只需繼承於 RuntimeExceptionjava

使用的時候直接:throw new用戶自定義異常便可;ide

相關文章
相關標籤/搜索