source: josm/trunk/src/org/openstreetmap/josm/io/auth/CredentialsManagerException.java@ 2641

Last change on this file since 2641 was 2641, checked in by Gubaer, 14 years ago

new: supports system defined proxies if JOSM is started with -Djava.net.useSystemProxies=true
fixed #1641: JOSM doesn't allow for setting HTTP proxy user/password distrinct from OSM server user/password
fixed #2865: SOCKS Proxy Support
fixed #4182: Proxy Authentication

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