Latest News

 










Creating Exception Types

Previous slide Next slide Back to first slide View graphic version


Creating Exception Types


 
My other sites

Latest News

 










Creating Exception Types

    public class myException extends Exception {
    public String message;
    public myException(String msg) {
    message = msg;
    }
    }

Previous slide Next slide Back to first slide View graphic version