source: josm/trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentException.java@ 7004

Last change on this file since 7004 was 4245, checked in by bastiK, 13 years ago

some renames to simplify further development

  • Property svn:eol-style set to native
File size: 437 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io.auth;
3
4public class CredentialsAgentException extends Exception {
5 public CredentialsAgentException() {super();}
6 public CredentialsAgentException(String message, Throwable cause) {super(message, cause);}
7 public CredentialsAgentException(String message) {super(message);}
8 public CredentialsAgentException(Throwable cause) {super(cause);}
9
10}
Note: See TracBrowser for help on using the repository browser.