com.hn.config.exception.HnException Maven / Gradle / Ivy
package com.hn.config.exception;
/**
* 描述:
* HnException
*
* @author shilvfei
* 2019-01-10 19:13
*/
public class HnException extends RuntimeException {
public HnException() {
}
public HnException(String message) {
super(message);
}
public HnException(String message, Throwable cause) {
super(message, cause);
}
public static HnException exception(String message){
return new HnException(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy