Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

catch (AuthenticationException authEx) {
System.out.println("authentication failed");
authenticated= false;
}
catch(Exception ex){
System.out.println("unknown exception in authentication");
ex.printStackTrace();
authenticated= false;
}

return authenticated;