com.hn.doc.xyj.exception.XyjException Maven / Gradle / Ivy
package com.hn.doc.xyj.exception;
/**
* 描述: 小幺鸡异常
*
* @author fei
* @since 2019-11-22 09:28
*/
public class XyjException extends RuntimeException{
public XyjException() {
}
public XyjException(String message) {
super(message);
}
public XyjException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy