永夜海 发表于 2017-5-25 09:28:45

IBM ESB API(1)

//////BaseException//////////主要定义异常处理

package com.huawei.common;

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);
    }
}
页: [1]
查看完整版本: IBM ESB API(1)