io.github.joblo2213.sma.speedwire.protocol.InvalidTelegramException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sma.speedwire Show documentation
Show all versions of sma.speedwire Show documentation
SMA-Speedwire is an api for communicating with SMA products over Ethernet using the speedwire
interface.
It allows listening for exchanged data between your devices and logging meter readings.
package io.github.joblo2213.sma.speedwire.protocol;
/**
* Indicates an error while parsing a telegram.
* This may be because the telegram does not match the type that is tried to parse or because it was corrupted.
*/
public class InvalidTelegramException extends Exception {
public InvalidTelegramException(String message) {
super(message);
}
public InvalidTelegramException(Throwable cause) {
super(cause);
}
public InvalidTelegramException(String message, Throwable cause) {
super(message, cause);
}
}