org.pcap4j.util.LengthZeroException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pcap4j-core Show documentation
Show all versions of pcap4j-core Show documentation
The core module of Pcap4J.
/*_##########################################################################
_##
_## Copyright (C) 2017 Pcap4J.org
_##
_##########################################################################
*/
package org.pcap4j.core;
/**
* @author Luca Barze
* @since pcap4j 2.0.0
*/
public final class LengthZeroException extends RuntimeException {
/** */
private static final long serialVersionUID = -3228133427989686165L;
/** */
public LengthZeroException() {
super();
}
/** @param message message */
public LengthZeroException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy