source: josm/trunk/src/org/openstreetmap/josm/io/MissingOAuthAccessTokenException.java@ 8674

Last change on this file since 8674 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 537 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4
5public class MissingOAuthAccessTokenException extends OsmTransferException {
6 public MissingOAuthAccessTokenException() {
7 super();
8 }
9
10 public MissingOAuthAccessTokenException(String message, Throwable cause) {
11 super(message, cause);
12 }
13
14 public MissingOAuthAccessTokenException(String message) {
15 super(message);
16 }
17
18 public MissingOAuthAccessTokenException(Throwable cause) {
19 super(cause);
20 }
21}
Note: See TracBrowser for help on using the repository browser.