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