com.qcloud.cos.exception.FileLockException 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;
public class FileLockException extends CosClientException {
private static final long serialVersionUID = 1L;
public FileLockException(Throwable t) {
super(t);
}
public FileLockException(String msg) {
super(msg);
}
@Override
public boolean isRetryable() {
return false;
}
}