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

com.aliyun.datahub.exception.AbortedException Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.exception;

/**
 * SDK operation aborted exception.
 */
public class AbortedException extends DatahubClientException {
    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("");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy