I\'ve created a custom Exception class that I want to use in my application:
public class MyException extends Exception { private static final long serialVer
What the compile time error says is right "This exception is never thrown from the try statement body". You don't have anything which throws MyException
MyException