JAvaベースカスタムテスト異常クラス

2330 ワード

本の授業後の問題は,役に立つと思うのでここに置いておきました.
class NoThisSongException extends Exception {
    public NoThisSongException() {
        super();
    }
    public NoThisSongException(String str) {
        super(str);
    }
}
class Player {
    public void play(int index) throws NoThisSongException{
        if(index>10){
            throw new NoThisSongException(" ");
        } else {
            System.out.println(" "+index+" ");
        }
    }
}
public class test3 {
    public static void main(String[] args) {
        Player p1 = new Player();
        try{
            p1.play(5);
            p1.play(11);
        }catch(NoThisSongException e){
            System.out.println(e.getMessage());
        }
    }
}

 
転載先:https://www.cnblogs.com/wysAC666/p/9916485.html