![JAR search and dependency download from the Maven repository](/logo.png)
com.netease.cloud.exception.AbortedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nos-sdk-java-publiccloud Show documentation
Show all versions of nos-sdk-java-publiccloud Show documentation
nos java sdk to the Central Repository
The newest version!
package com.netease.cloud.exception;
import com.netease.cloud.ClientException;
/**
* SDK operation aborted exception.
*/
public class AbortedException extends ClientException {
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy