summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/gpoddernet/GpodnetServiceAuthenticationException.java
blob: 3b014082685cd1684ce93add53f90c799828795e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package de.danoeh.antennapod.gpoddernet;

public class GpodnetServiceAuthenticationException extends GpodnetServiceException {

    public GpodnetServiceAuthenticationException() {
        super();
    }

    public GpodnetServiceAuthenticationException(String message, Throwable cause) {
        super(message, cause);
    }

    public GpodnetServiceAuthenticationException(String message) {
        super(message);
    }

    public GpodnetServiceAuthenticationException(Throwable cause) {
        super(cause);
    }

}