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

org.openmuc.j62056.internal.cli.CliParseException Maven / Gradle / Ivy

Go to download

j62056, a library for reading meters using IEC 62056-21 in modes A, B, C or D.

There is a newer version: 2.2.0
Show newest version
package org.openmuc.j62056.internal.cli;

public final class CliParseException extends Exception {

    private static final long serialVersionUID = -5162894897245715377L;

    public CliParseException() {
        super();
    }

    public CliParseException(String s) {
        super(s);
    }

    public CliParseException(Throwable cause) {
        super(cause);
    }

    public CliParseException(String s, Throwable cause) {
        super(s, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy