com.ibm.cp4waiops.connectors.sdk.PropertyReadException 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;
/**
* Exception class thrown if a property cannot be read
*/
public class PropertyReadException extends RuntimeException {
public PropertyReadException(String message) {
super(message);
}
public PropertyReadException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy