source: josm/trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationException.java@ 4102

Last change on this file since 4102 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 507 bytes
RevLine 
[2801]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.oauth;
3
[2861]4public class OsmOAuthAuthorizationException extends Exception {
[2801]5
[2861]6 public OsmOAuthAuthorizationException() {
[2801]7 super();
8 }
9
[2861]10 public OsmOAuthAuthorizationException(String arg0, Throwable arg1) {
[2801]11 super(arg0, arg1);
12 }
13
[2861]14 public OsmOAuthAuthorizationException(String arg0) {
[2801]15 super(arg0);
16 }
17
[2861]18 public OsmOAuthAuthorizationException(Throwable arg0) {
[2801]19 super(arg0);
20 }
21}
Note: See TracBrowser for help on using the repository browser.