com.github.nmorel.gwtjackson.client.exception.JsonMappingException 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 mapping process
*
* @author Nicolas Morel
*/
public class JsonMappingException extends RuntimeException {
public JsonMappingException() {
}
public JsonMappingException( String message ) {
super( message );
}
public JsonMappingException( String message, Throwable cause ) {
super( message, cause );
}
public JsonMappingException( Throwable cause ) {
super( cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy