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

com.starmcc.qmframework.exception.QmParamErrorException Maven / Gradle / Ivy

Go to download

springboot based on a series of packaging framework. QmFramework to implements AOP, rewrite the requestBody, global exception catching,version checking, request body parameter symmetric encryption mechanism, controller packaging and the toolkit collection. thank you for using it.

There is a newer version: 3.0.1-RELEASE
Show newest version
package com.starmcc.qmframework.exception;

/**
 * 参数解析错误时触发该异常!
 *
 * @Author qm
 * @Date 2019/4/19 12:34
 */
public class QmParamErrorException extends RuntimeException {

    public QmParamErrorException(String message) {
        super(String.format("required param {%s} is error", message));
    }

    public QmParamErrorException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy