欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 自定义错误类示例代码

程序员文章站 2023-12-20 08:57:22
在程序中,需要抛出异常,然后在用户界面进行错误信息输出。一种情况是在程序中最后ui显示的时候一个一个异常捕获,然后 显示对应的errormessage,有时候,程序因为业务...

在程序中,需要抛出异常,然后在用户界面进行错误信息输出。

一种情况是在程序中最后ui显示的时候一个一个异常捕获,然后 显示对应的errormessage,有时候,程序因为业务逻辑的原因需要抛出异常,就需要自定义异常。

如何将异常消息集中处理,以对应多语言话的要求 ,这些错误消息就需要集中处理了。

自定义错误消息。

复制代码 代码如下:

public class myexception extends exception
{
    private static final long serialversionuid = 1l;
    private type type;

    public myexception( type type )
    {
        super();
        this.type = type;
    }
    public myexception( throwable t, type type )
    {
        super( t );
        this.type = type;
    }
    public string tostring() {
        return super.tostring() + "<" + geterrortype().geterrorcode() + ">";
    }

    public type geterrortype()
    {
        return type;
    }

    public enum type
    {
        // 系统错误
        system_error( "99999" ),

        // 用户认证错误
        user_auth( "03003" );

        private string errorcode;
        type( string errorcode )
        {
            this.errorcode = errorcode;
        }
        public string geterrorcode()
        {
            return this.errorcode;
        }
    }
}

在这里抛出错误代码,然后可以根据这个错误代码取得资源文件的错误消息。

上一篇:

下一篇: