com.kfuntak.gwt.json.serialization.client.SerializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwtprojsonserializer Show documentation
Show all versions of gwtprojsonserializer Show documentation
GWT Professional JSON Serializer allows you to serialize any JSON text into a java object (and reverse).
It is crucial functionality when there is no GWT-RPC on server side.
This JSON serializer allows easy connecting GWT client side to any standard server side technology.
package com.kfuntak.gwt.json.serialization.client;
public class SerializationException extends RuntimeException {
public SerializationException() {
}
public SerializationException(String arg0) {
super(arg0);
}
public SerializationException(Throwable arg0) {
super(arg0);
}
public SerializationException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
}