FileDocCategorySizeDatePackage
ParseException.javaAPI DocAndroid 1.5 API972Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.parser

ParseException

public class ParseException extends com.google.wireless.gdata.GDataException
Exception thrown if a GData feed cannot be parsed.

Fields Summary
Constructors Summary
public ParseException()
Creates a new empty ParseException.

        super();
    
public ParseException(String message)
Creates a new ParseException with the supplied message.

param
message The message for this ParseException.

        super(message);
    
public ParseException(String message, Throwable cause)
Creates a new ParseException with the supplied message and underlying cause.

param
message The message for this ParseException.
param
cause The underlying cause that was caught and wrapped by this ParseException.

        super(message, cause);
    
Methods Summary