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

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

update to CheckStyle 6.13

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4public class MissingOAuthAccessTokenException extends OsmTransferException {
5
6 /**
7 * Constructs a new {@code MissingOAuthAccessTokenException}.
8 */
9 public MissingOAuthAccessTokenException() {
10 super();
11 }
12
13 /**
14 * Constructs a new {@code OsmTransferException} with the specified detail message and cause.
15 * @param message The detail message (which is saved for later retrieval by the {@link #getMessage} method)
16 * @param cause The cause (which is saved for later retrieval by the {@link #getCause} method).
17 * A null value is permitted, and indicates that the cause is nonexistent or unknown.
18 */
19 public MissingOAuthAccessTokenException(String message, Throwable cause) {
20 super(message, cause);
21 }
22
23 /**
24 * Constructs a new {@code OsmTransferException} with the specified detail message.
25 * @param message The detail message (which is saved for later retrieval by the {@link #getMessage} method)
26 */
27 public MissingOAuthAccessTokenException(String message) {
28 super(message);
29 }
30
31 /**
32 * Constructs a new {@code OsmTransferException} with the specified cause.
33 * @param cause The cause (which is saved for later retrieval by the {@link #getCause} method).
34 * A null value is permitted, and indicates that the cause is nonexistent or unknown.
35 */
36 public MissingOAuthAccessTokenException(Throwable cause) {
37 super(cause);
38 }
39}
Note: See TracBrowser for help on using the repository browser.