All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.leftins.tools.exception.ParamJsonException Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
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