com.wichell.core.exception.IllegalParameterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wichell-common Show documentation
Show all versions of wichell-common Show documentation
common project com.wichell.wichell jar
The newest version!
/**
*
*/
package com.wichell.core.exception;
import com.wichell.core.support.HttpCode;
/**
*
* @author Wichell
* @version 2016年6月7日 下午8:46:11
*/
@SuppressWarnings("serial")
public class IllegalParameterException extends BaseException {
public IllegalParameterException() {
}
public IllegalParameterException(Throwable ex) {
super(ex);
}
public IllegalParameterException(String message) {
super(message);
}
public IllegalParameterException(String message, Throwable ex) {
super(message, ex);
}
protected HttpCode getHttpCode() {
return HttpCode.BAD_REQUEST;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy