
com.taobao.tdhs.client.exception.TDHSEncodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tdhs-java-client Show documentation
Show all versions of tdhs-java-client Show documentation
A TDH_SOCKET Client For Java
/*
* Copyright(C) 2011-2012 Alibaba Group Holding Limited
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Authors:
* wentong
*/
package com.taobao.tdhs.client.exception;
/**
* @author 文通
* @since 11-12-2 下午1:28
*/
public class TDHSEncodeException extends TDHSException {
private static final long serialVersionUID = 4248787784350507825L;
public TDHSEncodeException() {
}
public TDHSEncodeException(String message) {
super(message);
}
public TDHSEncodeException(String message, Throwable cause) {
super(message, cause);
}
public TDHSEncodeException(Throwable cause) {
super(cause);
}
}