org.somda.sdc.glue.consumer.sco.InvocationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue Show documentation
Show all versions of glue Show documentation
SDCri is a set of Java libraries that implements a network communication framework conforming
with the IEEE 11073 SDC specifications. This project implements the 11073-20702 SDC glue binding.
package org.somda.sdc.glue.consumer.sco;
import org.jspecify.annotations.Nullable;
/**
* Error that can occur during SCO processing.
*/
public class InvocationException extends Exception {
public InvocationException() {
}
public InvocationException(@Nullable String message) {
super(message);
}
public InvocationException(@Nullable String message, Throwable cause) {
super(message, cause);
}
public InvocationException(Throwable cause) {
super(cause);
}
public InvocationException(@Nullable String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}