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

com.taobao.tdhs.client.exception.TDHSTimeoutException Maven / Gradle / Ivy

/*
 * 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 12-2-9 下午2:11
 */
public class TDHSTimeoutException extends TDHSException {
    private static final long serialVersionUID = -6031912630289588430L;

    public TDHSTimeoutException() {
    }

    public TDHSTimeoutException(String message) {
        super(message);
    }

    public TDHSTimeoutException(String message, Throwable cause) {
        super(message, cause);
    }

    public TDHSTimeoutException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy