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

org.pcap4j.util.LengthZeroException Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha.6
Show newest version
/*_##########################################################################
  _##
  _##  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