All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.joblo2213.sma.speedwire.protocol.InvalidTelegramException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.0.2
Show newest version
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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy