rtckit/php-sip

View on GitHub
src/Exception/InvalidCSeqValueException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
/**
 * RTCKit\SIP\Exception\InvalidCSeqValueException Class
 */
declare(strict_types = 1);

namespace RTCKit\SIP\Exception;

/**
 * Exception thrown when processing SIP Messages with conflicting
 * CSeq header values
 */
class InvalidCSeqValueException extends SIPException
{
}