|
|||||||||||||||||||
| This license of Clover is provided to support the development of Flock only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| UnsupportedFeedFormatException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
package net.sf.flock.parser; |
|
| 2 |
|
|
| 3 |
import net.sf.flock.FlockResourceException; |
|
| 4 |
|
|
| 5 |
/** |
|
| 6 |
* @version $Revision: 1.1 $ |
|
| 7 |
* @author $Author: phraktle $ |
|
| 8 |
*/ |
|
| 9 |
public class UnsupportedFeedFormatException extends FlockResourceException {
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
/** |
|
| 13 |
* Constructor for UnsupportedFeedFormatException. |
|
| 14 |
*/ |
|
| 15 | 0 |
public UnsupportedFeedFormatException() {
|
| 16 | 0 |
super(); |
| 17 |
} |
|
| 18 |
|
|
| 19 |
/** |
|
| 20 |
* Constructor for UnsupportedFeedFormatException. |
|
| 21 |
* @param arg0 |
|
| 22 |
*/ |
|
| 23 | 0 |
public UnsupportedFeedFormatException(String arg0) {
|
| 24 | 0 |
super(arg0); |
| 25 |
} |
|
| 26 |
|
|
| 27 |
/** |
|
| 28 |
* Constructor for UnsupportedFeedFormatException. |
|
| 29 |
* @param arg0 |
|
| 30 |
*/ |
|
| 31 | 0 |
public UnsupportedFeedFormatException(Throwable arg0) {
|
| 32 | 0 |
super(arg0); |
| 33 |
} |
|
| 34 |
|
|
| 35 |
/** |
|
| 36 |
* Constructor for UnsupportedFeedFormatException. |
|
| 37 |
* @param arg0 |
|
| 38 |
* @param arg1 |
|
| 39 |
*/ |
|
| 40 | 0 |
public UnsupportedFeedFormatException(String arg0, Throwable arg1) {
|
| 41 | 0 |
super(arg0, arg1); |
| 42 |
} |
|
| 43 |
|
|
| 44 |
} |
|
| 45 |
|
|
||||||||||