com.qcloud.cos.exception.AbortedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api Show documentation
Show all versions of cos_api Show documentation
qcloud cos sdk for inner tencentyun
The newest version!
package com.qcloud.cos.exception;
/**
* SDK operation aborted exception.
*/
public class AbortedException extends CosClientException {
private static final long serialVersionUID = 1L;
public AbortedException(String message, Throwable t) {
super(message, t);
}
public AbortedException(Throwable t) {
super("", t);
}
public AbortedException(String message) {
super(message);
}
public AbortedException() {
super("");
}
/**
* {@inheritDoc}
* An aborted exception is not intended to be retried.
*/
@Override
public boolean isRetryable() {
return false;
}
}