我想将错误代码与异常相关联。
在此链接http://www.restapitutorial.com/httpstatuscodes.html中,我们可以找到HTTP状态代码。
Java Exception代码有什么样的约定,比如EJBException?
答案 0 :(得分:4)
没有。将异常附加错误代码没有约定。
您可以轻松编写自己的Exception
来执行此操作:
public class MyAppException extends Exception
{
private String errorCode;
public MyAppException(String errorCode, String message)
{
super(message);
this.errorCode = errorCode;
}
// errorCode getter & setter
}