com.github.sylphlike.framework.utils.UtilException Maven / Gradle / Ivy
The newest version!
package com.github.sylphlike.framework.utils;
/**
* time 10/09/2020 18:19 星期四 (dd/MM/YYYY HH:mm)
*
email [email protected]
*
* @author Gopal.pan
* @version 1.0.0
*/
public class UtilException extends RuntimeException {
private static final long serialVersionUID = 8247610319171014183L;
public UtilException(String message) {
super(message);
}
public UtilException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy