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

javastrava.json.exception.JsonSerialisationException Maven / Gradle / Ivy

The newest version!
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy