All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nytimes.android.external.store3.util.ParserException Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.nytimes.android.external.store3.util;

/**
 * Exception thrown when one of the provided parsers fails.
 */
public class ParserException extends RuntimeException {

    public ParserException(Throwable cause) {
        super(cause);
    }

    public ParserException(String message) {
        super(message);
    }

    public ParserException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy