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

pcap.spi.exception.error.NoSuchDeviceException 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.error;

/**
 * No such device exists ({@code -5}).
 *
 * @since 1.0.0
 */
public class NoSuchDeviceException extends Exception {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy