公约Java错误代码

时间:2014-09-25 11:45:28

标签: java exception

我想将错误代码与异常相关联。

在此链接http://www.restapitutorial.com/httpstatuscodes.html中,我们可以找到HTTP状态代码。

Java Exception代码有什么样的约定,比如EJBException?

1 个答案:

答案 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
}