Ignore:
Timestamp:
2015-12-02T00:19:08+01:00 (8 years ago)
Author:
Don-vip
Message:

update to CheckStyle 6.13

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/MissingOAuthAccessTokenException.java

    r8510 r9079  
    22package org.openstreetmap.josm.io;
    33
     4public class MissingOAuthAccessTokenException extends OsmTransferException {
    45
    5 public class MissingOAuthAccessTokenException extends OsmTransferException {
     6    /**
     7     * Constructs a new {@code MissingOAuthAccessTokenException}.
     8     */
    69    public MissingOAuthAccessTokenException() {
    710        super();
    811    }
    912
     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     */
    1019    public MissingOAuthAccessTokenException(String message, Throwable cause) {
    1120        super(message, cause);
    1221    }
    1322
     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     */
    1427    public MissingOAuthAccessTokenException(String message) {
    1528        super(message);
    1629    }
    1730
     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     */
    1836    public MissingOAuthAccessTokenException(Throwable cause) {
    1937        super(cause);
Note: See TracChangeset for help on using the changeset viewer.