summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/InvalidFeedException.java
blob: 50adae21687949892aa36d9e01398c8d96c6c6bc (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.util;

/** Thrown if a feed has invalid attribute values. */
public class InvalidFeedException extends Exception {

	public InvalidFeedException() {
	}

	public InvalidFeedException(String detailMessage) {
		super(detailMessage);
	}

	public InvalidFeedException(Throwable throwable) {
		super(throwable);
	}

	public InvalidFeedException(String detailMessage, Throwable throwable) {
		super(detailMessage, throwable);
	}

}