001    // License: GPL. For details, see LICENSE file.
002    package org.openstreetmap.josm.gui.oauth;
003    
004    public class OsmOAuthAuthorizationException extends Exception {
005    
006        public OsmOAuthAuthorizationException() {
007            super();
008        }
009    
010        public OsmOAuthAuthorizationException(String arg0, Throwable arg1) {
011            super(arg0, arg1);
012        }
013    
014        public OsmOAuthAuthorizationException(String arg0) {
015            super(arg0);
016        }
017    
018        public OsmOAuthAuthorizationException(Throwable arg0) {
019            super(arg0);
020        }
021    }