读书人

错误BaseException

发布时间: 2012-10-27 10:42:25 作者: rapoo

异常BaseException
public class BaseException extends RuntimeException
{
private static final long serialVersionUID = 1L;

public BaseException()
{
super();
}

public BaseException(String msg)
{
super(msg);
}

public BaseException(Throwable cause)
{
super(cause);
}

public BaseException(String msg, Throwable cause)
{
super(msg, cause);
}
}

读书人网 >编程

热点推荐