javastrava.json.exception.JsonSerialisationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javastrava-api Show documentation
Show all versions of javastrava-api Show documentation
Java implementation of the Strava API
package javastrava.json.exception;
/**
*
* Default exception if there is some issue with JSON serialisation that can't be dealt with
*
*
* @author Dan Shannon
*
*/
public class JsonSerialisationException extends Exception {
/**
* Default serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
* @param string Error message
* @param e Root cause
*/
public JsonSerialisationException(final String string, final Exception e) {
super(string, e);
}
}