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

com.qcloud.cos.exception.AbortedException Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy