source: josm/trunk/src/org/openstreetmap/josm/gui/oauth/OsmLoginFailedException.java@ 2861

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

fixed #4375: authorise -> authorize

File size: 684 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.oauth;
3
4public class OsmLoginFailedException extends OsmOAuthAuthorizationException{
5
6 public OsmLoginFailedException() {
7 super();
8 // TODO Auto-generated constructor stub
9 }
10
11 public OsmLoginFailedException(String arg0, Throwable arg1) {
12 super(arg0, arg1);
13 // TODO Auto-generated constructor stub
14 }
15
16 public OsmLoginFailedException(String arg0) {
17 super(arg0);
18 // TODO Auto-generated constructor stub
19 }
20
21 public OsmLoginFailedException(Throwable arg0) {
22 super(arg0);
23 // TODO Auto-generated constructor stub
24 }
25}
Note: See TracBrowser for help on using the repository browser.