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

Last change on this file since 13892 was 9227, checked in by Don-vip, 8 years ago

OAuth: add robustness, basic unit test, code cleanup

  • Property svn:eol-style set to native
File size: 509 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.oauth;
3
4/**
5 * OSM login failure exception.
6 * @since 2746
7 */
8public class OsmLoginFailedException extends OsmOAuthAuthorizationException {
9
10 /**
11 * Constructs a new {@code OsmLoginFailedException} with the specified cause.
12 * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
13 */
14 public OsmLoginFailedException(Throwable cause) {
15 super(cause);
16 }
17}
Note: See TracBrowser for help on using the repository browser.