com.zhaofujun.automapper.mapping.ParseValueException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automapper Show documentation
Show all versions of automapper Show documentation
easy to mapping jave entity
The newest version!
package com.zhaofujun.automapper.mapping;
public class ParseValueException extends Exception {
public ParseValueException(String message) {
super(message);
}
public ParseValueException(String message, Throwable cause) {
super(message, cause);
}
}