com.dg.libs.rest.exceptions.ParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-rest Show documentation
Show all versions of android-rest Show documentation
This is a library for android for Making RestFul Requests
package com.dg.libs.rest.exceptions;
public class ParseException extends HttpException {
private static final long serialVersionUID = -7964127989566422126L;
@SuppressWarnings("unused")
private static final String TAG = ParseException.class.getSimpleName();
public ParseException(final String s) {
super(s);
}
public ParseException(final String detailMessage, final Throwable throwable) {
super(detailMessage, throwable);
}
public ParseException(final Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy