View Javadoc
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 public UnsupportedFeedFormatException() { 16 super(); 17 } 18 19 /*** 20 * Constructor for UnsupportedFeedFormatException. 21 * @param arg0 22 */ 23 public UnsupportedFeedFormatException(String arg0) { 24 super(arg0); 25 } 26 27 /*** 28 * Constructor for UnsupportedFeedFormatException. 29 * @param arg0 30 */ 31 public UnsupportedFeedFormatException(Throwable arg0) { 32 super(arg0); 33 } 34 35 /*** 36 * Constructor for UnsupportedFeedFormatException. 37 * @param arg0 38 * @param arg1 39 */ 40 public UnsupportedFeedFormatException(String arg0, Throwable arg1) { 41 super(arg0, arg1); 42 } 43 44 }

This page was automatically generated by Maven