pcap.spi.exception.error.TimestampPrecisionNotSupportedException Maven / Gradle / Ivy
/*
* Copyright (c) 2020-2021 Pcap Project
* SPDX-License-Identifier: MIT OR Apache-2.0
*/
package pcap.spi.exception.error;
/**
* The requested time stamp precision is not supported ({@code -12}).
*
* @since 1.0.0
*/
public class TimestampPrecisionNotSupportedException extends Exception {
/**
* Create new TimestampPrecisionNotSupportedException instance.
*
* @param message message.
* @since 1.0.0
*/
public TimestampPrecisionNotSupportedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy