com.mizhousoft.geo.GEOException Maven / Gradle / Ivy
The newest version!
package com.mizhousoft.geo;
import com.mizhousoft.commons.data.NestedException;
/**
* 异常
*
* @version
*/
public class GEOException extends NestedException
{
private static final long serialVersionUID = -4408349826481304293L;
/**
* 构造函数
*
* @param errorCode
* @param message
* @param throwable
*/
public GEOException(String errorCode, String message, Throwable throwable)
{
super(errorCode, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param message
*/
public GEOException(String errorCode, String message)
{
super(errorCode, message);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
* @param throwable
*/
public GEOException(String errorCode, String[] codeParams, String message, Throwable throwable)
{
super(errorCode, codeParams, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
*/
public GEOException(String errorCode, String[] codeParams, String message)
{
super(errorCode, codeParams, message);
}
/**
* 构造函数
*
* @param message
* @param throwable
*/
public GEOException(String message, Throwable throwable)
{
super(message, throwable);
}
/**
* 构造函数
*
* @param message
*/
public GEOException(String message)
{
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy