com.nytimes.android.external.store3.util.ParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of store3 Show documentation
Show all versions of store3 Show documentation
Store3 is built with RxJava2
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);
}
}