com.leftins.tools.exception.ParamJsonException Maven / Gradle / Ivy
package com.leftins.tools.exception;
public class ParamJsonException extends RuntimeException {
private static final long serialVersionUID = 1L;
private String message;
@Override
public String getMessage() {
return message;
}
public ParamJsonException() {}
public ParamJsonException(String message) {
super(message);
this.message = message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy