
com.aliyun.dts.subscribe.clients.exception.DTSBaseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dts-new-subscribe-sdk Show documentation
Show all versions of dts-new-subscribe-sdk Show documentation
The Aliyun new Subscribe SDK for Java used for accessing Data Transmission Service
The newest version!
package com.aliyun.dts.subscribe.clients.exception;
public class DTSBaseException extends RuntimeException {
public DTSBaseException(String message) {
super(message);
}
public DTSBaseException(String message, Throwable cause) {
super(message, cause);
}
public DTSBaseException(Throwable throwable) {
super(throwable);
}
public DTSBaseException() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy