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

pcap.spi.exception.TimeoutException Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
/*
 * Copyright (c) 2020-2021 Pcap Project
 * SPDX-License-Identifier: MIT OR Apache-2.0
 */
package pcap.spi.exception;

/**
 * Timeout occurred while reading packet's.
 *
 * @since 1.0.0
 */
public class TimeoutException extends Exception {

  /**
   * Create new TimeoutException instance.
   *
   * @param message message.
   * @since 1.0.0
   */
  public TimeoutException(String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy