📄 originalexception.java
字号:
// Decompiled by DJ v2.9.9.60 Copyright 2000 Atanas Neshkov Date: 2007/07/10 11:12:14
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: OriginalException.java
package exce;
import entity.Status;
public class OriginalException extends RuntimeException
{
/**
*
*/
private static final long serialVersionUID = 1L;
public OriginalException()
{
}
public OriginalException(Throwable th, String str)
{
setStatus(th, -99, str, 0);
}
public OriginalException(Throwable th)
{
setStatus(th, -99, th.getClass().toString(), 0);
}
protected void setStatus(Throwable th, int status, String str, int eno)
{
st = new Status();
st.status = status;
st.msg = "";
st.usermsg = str;
st.errno = eno;
st.param = new String[5];
// LoggingWriter.loggingWriter(th.getClass().toString(), th.fillInStackTrace());
}
protected void setStatus(Status setst)
{
st = setst;
}
public Status getStatus()
{
if(st != null)
{
return st;
} else
{
st = new Status();
return st;
}
}
private Status st;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -