public class OwnException5 {
	public static void main(String[] args) {
		try {
			exceptionProne();
		} catch (myException e) {
			System.out.println("exception myException catched within main method");
		} //catch
	} //main()

	public static void exceptionProne() throws myException {
		try {
			throw new myException();
		} catch (myException e) {
			System.out.println("exception myException catched within method exceptionProne");
			System.out.println("re-throwing...");
			throw e;
		} //catch
	} //exceptionProne()
} //class OwnException5

class myException extends Exception {
} //class myException