com.sun.syndication.io
public class ParsingFeedException extends FeedException
Constructor and Description |
---|
ParsingFeedException(java.lang.String msg)
Creates a FeedException with a message.
|
ParsingFeedException(java.lang.String msg,
java.lang.Throwable rootCause)
Creates a FeedException with a message and a root cause exception.
|
Modifier and Type | Method and Description |
---|---|
int |
getColumnNumber()
Returns the column number of the end of the text where the
parse error occurred.
|
int |
getLineNumber()
Returns the line number of the end of the text where the
parse error occurred.
|
public ParsingFeedException(java.lang.String msg)
msg
- exception message.public ParsingFeedException(java.lang.String msg, java.lang.Throwable rootCause)
msg
- exception message.rootCause
- root cause exception.public int getLineNumber()
The first line in the document is line 1.
public int getColumnNumber()
The first column in a line is position 1.