net.sf.jetro.object.exception.DeserializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetro-object Show documentation
Show all versions of jetro-object Show documentation
JSON to Java Object Mapper for the Jetro JSON Transformation Engine
The newest version!
package net.sf.jetro.object.exception;
public class DeserializationException extends RuntimeException {
private static final long serialVersionUID = 2781208198320064680L;
public DeserializationException(String message) {
super(message);
}
public DeserializationException(String message, Throwable cause) {
super(message, cause);
}
}