org.eclipse.ecf.provider.rss.channel
Class ParseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.eclipse.ecf.provider.rss.channel.ParseException
All Implemented Interfaces:
java.io.Serializable

public class ParseException
extends java.lang.Exception

Exception which is thrown if a syntax problem is encountered while a document instance (like a channel description) is read in.

Author:
Sergey Yakovlev
See Also:
Serialized Form

Constructor Summary
ParseException()
          Create a new ParseException with no detail mesage.
ParseException(java.lang.String message)
          Create a new ParseException with the String specified as an error message.
ParseException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new ParseException with the specified detail message and cause.
ParseException(java.lang.Throwable cause)
          Constructs a new ParseException with the specified cause and a detail message of (cause==null ?
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParseException

public ParseException()
Create a new ParseException with no detail mesage.


ParseException

public ParseException(java.lang.String message)
Create a new ParseException with the String specified as an error message.

Parameters:
message - - The error message for the exception.

ParseException

public ParseException(java.lang.Throwable cause)
Constructs a new ParseException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - - the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

ParseException

public ParseException(java.lang.String message,
                      java.lang.Throwable cause)
Constructs a new ParseException with the specified detail message and cause.

Parameters:
message - - the detail message (which is saved for later retrieval by the getMessage() method).
cause - - the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)