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);
}
}
相关文章
- python 的err输出BaseException
- 异常BaseException
- 【python】错误异常BaseException一览
- 发送邮件,出现异常:服务器响应为: Error: need EHLO and AUTH first !"
- Android Glide You cannot start a load for a destroyed activity 的异常及解决方法
- Gson解析报异常 declares multiple JSON fields named `
- Unparseable date: "2017-11-01"异常解决
- python成绩转换、百分制到五分制、异常处理_python学习第14期
- Android 12安装app失败,提示安装包解析异常
- 解决$NotFoundException: File res/layout/...异常