public class OwnException3 {
	public static void main(String[] args) {
		try {
			exceptionProne();
		} catch (myException myE) {
			System.out.println("Exception of type myException caught!");
		} //catch
	} //main()

	public static void exceptionProne() throws myException {
		throw new myException();
	} //exceptionProne()
} //class OwnException3

class myException extends Exception {
} //class myException