io.strmprivacy.driver.domain.StrmPrivacyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-driver Show documentation
Show all versions of java-driver Show documentation
Java driver for interacting with STRM Privacy.
package io.strmprivacy.driver.domain;
public class StrmPrivacyException extends RuntimeException {
public StrmPrivacyException(String message, Throwable cause) {
super(message, cause);
}
public StrmPrivacyException(Throwable cause) {
super(cause);
}
}