Source of file ConstantDoesNotExistException.php
Size: 0,516 Bytes - Last Modified: 2021-01-12T22:04:13+00:00
C:/Users/MAKS/Code/_PROJECTS/amqp-agent/src/Exception/ConstantDoesNotExistException.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; /** * Constant does not exist exception. * @since 1.2.0 */ class ConstantDoesNotExistException extends AmqpAgentException { // ConstantDoesNotExistException } |