com.github.nmorel.gwtjackson.client.exception.JsonDeserializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-jackson Show documentation
Show all versions of gwt-jackson Show documentation
gwt-jackson is a GWT JSON serializer/deserializer mechanism based on Jackson annotations
package com.github.nmorel.gwtjackson.client.exception;
/**
* Base exception for deserialization process
*
* @author Nicolas Morel
*/
public class JsonDeserializationException extends JsonMappingException {
public JsonDeserializationException() {
}
public JsonDeserializationException( String message ) {
super( message );
}
public JsonDeserializationException( String message, Throwable cause ) {
super( message, cause );
}
public JsonDeserializationException( Throwable cause ) {
super( cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy