org.openmuc.j62056.internal.cli.CliParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j62056 Show documentation
Show all versions of j62056 Show documentation
j62056, a library for reading meters using IEC 62056-21 in modes A, B, C or D.
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);
}
}