com.hmsonline.json.transformer.InvalidTransformerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-transformer Show documentation
Show all versions of json-transformer Show documentation
A json-2-json transformer library
The newest version!
package com.hmsonline.json.transformer;
public class InvalidTransformerException extends Exception {
private static final long serialVersionUID = -1787568223055173106L;
public InvalidTransformerException(String msg){
super(msg);
}
public InvalidTransformerException(String msg, Throwable e){
super(msg, e);
}
}