Просмотр файла vendor/deployer/deployer/src/Exception/WillAskUser.php

Размер файла: 372B
<?php declare(strict_types=1);

/* (c) Anton Medvedev <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Deployer\Exception;

class WillAskUser extends Exception
{
    public function __construct(string $message) {
        parent::__construct($message);
    }
}