summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata/client/AllDeletedUnavailableException.java
blob: 038cc87f1e345e6b302d2e37914d683a976e8eed (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
package com.google.wireless.gdata.client;

import com.google.wireless.gdata.GDataException;

/**
 * Exception thrown when the tombstones for a feed have expired. When the
 * client gets this it should refetch the entire feed.
 */
public class AllDeletedUnavailableException extends GDataException {

    /**
     * Creates a new AuthenticationException.
     */
    public AllDeletedUnavailableException() {
    }

    /**
     * Creates a new AllDeletedUnavailableException with a supplied message.
     * @param message The message for the exception.
     */
    public AllDeletedUnavailableException(String message) {
        super(message);
    }

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