com.mizhousoft.weixin.common.WXSystemErrorException Maven / Gradle / Ivy
package com.mizhousoft.weixin.common;
/**
* 微信系统错误
*
*/
public class WXSystemErrorException extends WXException
{
private static final long serialVersionUID = -2694786741412611413L;
/**
* 构造函数
*
* @param errorCode
* @param message
* @param throwable
*/
public WXSystemErrorException(String errorCode, String message, Throwable throwable)
{
super(errorCode, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param message
*/
public WXSystemErrorException(String errorCode, String message)
{
super(errorCode, message);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
* @param throwable
*/
public WXSystemErrorException(String errorCode, String[] codeParams, String message, Throwable throwable)
{
super(errorCode, codeParams, message, throwable);
}
/**
* 构造函数
*
* @param errorCode
* @param codeParams
* @param message
*/
public WXSystemErrorException(String errorCode, String[] codeParams, String message)
{
super(errorCode, codeParams, message);
}
/**
* 构造函数
*
* @param message
* @param throwable
*/
public WXSystemErrorException(String message, Throwable throwable)
{
super(message, throwable);
}
/**
* 构造函数
*
* @param message
*/
public WXSystemErrorException(String message)
{
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy