System.out.println("A throwable exception...");
}
try {
noHandler.authenticateRuntime("John", "Doe");
} catch (final WrongPasswordRuntimeException e) {
e.printStackTrace();
fail("My checked exception instead of a throwableS...");
} catch (final Throwable e) {
System.out.println("A throwable exception...");