pcap.spi.exception.error.NoSuchDeviceException Maven / Gradle / Ivy
/*
* 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