All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mizhousoft.apple.common.AppleException Maven / Gradle / Ivy

The newest version!
package com.mizhousoft.apple.common;

import com.mizhousoft.commons.data.NestedException;

/**
 * 异常类
 *
 * @version
 */
public class AppleException extends NestedException
{
	private static final long serialVersionUID = 6418064032994714230L;

	/**
	 * 构造函数
	 *
	 * @param errorCode
	 * @param message
	 * @param throwable
	 */
	public AppleException(String errorCode, String message, Throwable throwable)
	{
		super(errorCode, message, throwable);
	}

	/**
	 * 构造函数
	 *
	 * @param errorCode
	 * @param message
	 */
	public AppleException(String errorCode, String message)
	{
		super(errorCode, message);
	}

	/**
	 * 构造函数
	 *
	 * @param errorCode
	 * @param codeParams
	 * @param message
	 * @param throwable
	 */
	public AppleException(String errorCode, String[] codeParams, String message, Throwable throwable)
	{
		super(errorCode, codeParams, message, throwable);
	}

	/**
	 * 构造函数
	 *
	 * @param errorCode
	 * @param codeParams
	 * @param message
	 */
	public AppleException(String errorCode, String[] codeParams, String message)
	{
		super(errorCode, codeParams, message);
	}

	/**
	 * 构造函数
	 *
	 * @param message
	 * @param throwable
	 */
	public AppleException(String message, Throwable throwable)
	{
		super(message, throwable);
	}

	/**
	 * 构造函数
	 *
	 * @param message
	 */
	public AppleException(String message)
	{
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy