com.ibm.cp4waiops.connectors.sdk.VaultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connectors-sdk Show documentation
Show all versions of connectors-sdk Show documentation
A developer SDK for creating connectors for CP4WAIOps.
package com.ibm.cp4waiops.connectors.sdk;
@Deprecated(since = "1.5.0")
public class VaultException extends RuntimeException {
public VaultException(String message) {
super(message);
}
public VaultException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy