FeedNotFoundExceptionpublic class FeedNotFoundException extends ServiceException Will be thrown if a requested feed could not be found or is not
registerd. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public FeedNotFoundException(int errorCode)Constructs a new FeedNotFoundException
super(errorCode);
| public FeedNotFoundException(String arg0, int errorCode)Constructs a new FeedNotFoundException
super(arg0, errorCode);
| public FeedNotFoundException(String arg0, Throwable arg1, int errorCode)Constructs a new FeedNotFoundException
super(arg0, arg1, errorCode);
| public FeedNotFoundException(Throwable arg0, int errorCode)Constructs a new FeedNotFoundException
super(arg0, errorCode);
|
|