
com.star.exception.ToolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.exception;
/**
* 工具类的异常封装
*
* Created by win7 on 2017/5/20.
*/
public class ToolException extends RuntimeException {
public ToolException() {
}
public ToolException(String message) {
super(message);
}
public ToolException(String message, Throwable cause) {
super(message, cause);
}
public ToolException(Throwable cause) {
super(cause);
}
public ToolException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy