com.aliyun.tea.TeaRetryableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tea Show documentation
Show all versions of tea Show documentation
Aliyun tea for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
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(){}
}