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

io.pkts.packet.sip.SipParseException Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
/**
 * 
 */
package io.pkts.packet.sip;

import io.pkts.packet.PacketParseException;

/**
 * @author [email protected]
 */
public class SipParseException extends PacketParseException {

    private static final long serialVersionUID = 7627471115511100108L;

    public SipParseException(final int errorOffset, final String message) {
        super(errorOffset, message);
    }

    public SipParseException(final int errorOffset, final String message, final Exception cause) {
        super(errorOffset, message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy