| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception com.sun.syndication.io.FeedException com.sun.syndication.io.ParsingFeedException
ParsingFeedException | public class ParsingFeedException extends FeedException (Code) | | Exception thrown by WireFeedInput instance if it can not parse a feed.
author: Elaine Chien |
Method Summary | |
public int | getColumnNumber() Returns the column number of the end of the text where the
parse error occurred. | public int | getLineNumber() Returns the line number of the end of the text where the
parse error occurred. |
ParsingFeedException | public ParsingFeedException(String msg)(Code) | | Creates a FeedException with a message.
Parameters: msg - exception message. |
ParsingFeedException | public ParsingFeedException(String msg, Throwable rootCause)(Code) | | Creates a FeedException with a message and a root cause exception.
Parameters: msg - exception message. Parameters: rootCause - root cause exception. |
getColumnNumber | public int getColumnNumber()(Code) | | Returns the column number of the end of the text where the
parse error occurred.
The first column in a line is position 1.
an integer representing the column number, or -1if the information is not available. |
getLineNumber | public int getLineNumber()(Code) | | Returns the line number of the end of the text where the
parse error occurred.
The first line in the document is line 1.
an integer representing the line number, or -1if the information is not available. |
|
|
|