Source of file SingletonViolationException.php

Size: 0,508 Bytes - Last Modified: 2021-01-12T22:04:13+00:00

C:/Users/MAKS/Code/_PROJECTS/amqp-agent/src/Exception/SingletonViolationException.php

123456789101112131415161718192021222324
<?php

/**
 * @author Marwan Al-Soltany <MarwanAlsoltany@gmail.com>
 * @copyright Marwan Al-Soltany 2020
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

declare(strict_types=1);

namespace MAKS\AmqpAgent\Exception;

use MAKS\AmqpAgent\Exception\AmqpAgentException;

/**
 * Singleton violation exception.
 * @since 1.0.0
 */
class SingletonViolationException extends AmqpAgentException
{
    // SingletonViolationException
}