
com.star.exception.pojo.ToolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
some utility class for java develop
The newest version!
package com.star.exception.pojo;
/**
* 简单封装工具方法抛出的异常
*
* @author starhq
*
*/
public class ToolException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* 没花头简单的构造方法
*/
public ToolException(final String message) {
super(message);
}
/**
* 异常链
*/
public ToolException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy