source: josm/trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentException.java@ 11575

Last change on this file since 11575 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: 1.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io.auth;
3
4public class CredentialsAgentException extends Exception {
5
6 /**
7 * Constructs a new {@code CredentialsAgentException}.
8 * @param message the detail message (which is saved for later retrieval by the {@link #getMessage()} method).
9 * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
10 */
11 public CredentialsAgentException(String message, Throwable cause) {
12 super(message, cause);
13 }
14
15 /**
16 * Constructs a new {@code CredentialsAgentException}.
17 * @param message the detail message (which is saved for later retrieval by the {@link #getMessage()} method).
18 */
19 public CredentialsAgentException(String message) {
20 super(message);
21 }
22
23 /**
24 * Constructs a new {@code CredentialsAgentException}.
25 * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
26 */
27 public CredentialsAgentException(Throwable cause) {
28 super(cause);
29 }
30}
Note: See TracBrowser for help on using the repository browser.