summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/GDataException.java
blob: cd06fc2f51858c5dd1add715db0c421e0ad6cc97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright 2007 The Android Open Source Project
package com.google.wireless.gdata;

/**
 * The base exception for GData operations.
 */
public class GDataException extends Exception {

    private final Throwable cause;

    /**
     * Creates a new empty GDataException.
     */
    public GDataException() {
        super();
        cause = null;
    }

    /**
     * Creates a new GDataException with the supplied message.
     * @param message The message for this GDataException.
     */
    public GDataException(String message) {
        super(message);
        cause = null;
    }

    /**
     * Creates a new GDataException with the supplied message and underlying
     * cause.
     *
     * @param message The message for this GDataException.
     * @param cause The underlying cause that was caught and wrapped by this
     * GDataException.
     */
    public GDataException(String message, Throwable cause) {
        super(message);
        this.cause = cause;
    }

    /**
     * Creates a new GDataException with the underlying cause.
     *
     * @param cause The underlying cause that was caught and wrapped by this
     * GDataException.
     */
    public GDataException(Throwable cause) {
        this("", cause);
    }

    /**
     * @return the cause of this GDataException or null if the cause is unknown.
     */
    public Throwable getCause() {
        return cause;
    }

    /**
     * @return a string representation of this exception.
     */
    public String toString() {
        return super.toString() + (cause != null ? " " + cause.toString() : "");
    }
}