001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.oauth; 003 004/** 005 * OSM login failure exception. 006 * @since 2746 007 */ 008public class OsmLoginFailedException extends OsmOAuthAuthorizationException { 009 010 /** 011 * Constructs a new {@code OsmLoginFailedException} with the specified cause. 012 * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method). 013 */ 014 public OsmLoginFailedException(Throwable cause) { 015 super(cause); 016 } 017}