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

PduParser.InvalidHeaderValueException Maven / Gradle / Ivy

There is a newer version: 2.1.13.6
Show newest version
package PduParser;


/**
 * Thrown when an invalid header value was set.
 */
public class InvalidHeaderValueException extends Exception {
    private static final long serialVersionUID = -2053384496042052262L;

    /**
     * Constructs an InvalidHeaderValueException with no detailed message.
     */
    public InvalidHeaderValueException() {
        super();
    }

    /**
     * Constructs an InvalidHeaderValueException with the specified detailed message.
     *
     * @param message the detailed message.
     */
    public InvalidHeaderValueException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy