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

com.aliyun.tea.TeaRetryableException Maven / Gradle / Ivy

Go to download

Aliyun tea for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 1.3.1
Show newest version
package com.aliyun.tea;

import java.util.Map;

public class TeaRetryableException extends TeaException {

    private static final long serialVersionUID = 3883312421128465122L;

    public TeaRetryableException(Throwable cause) {
        super("", cause);
        message = cause.getMessage();
    }

    public TeaRetryableException(Map map) {
        super(map);
    }

    public TeaRetryableException(){}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy