StackFormation\Exception\BlueprintNotFoundException::__construct PHP Метод

__construct() публичный Метод

public __construct ( $blueprintname, $code, Exception $previous = null )
$previous Exception
    public function __construct($blueprintname, $code = 0, \Exception $previous = null)
    {
        $this->blueprintName = $blueprintname;
        $message = "Blueprint '{$blueprintname}' not found.";
        parent::__construct($message, $code, $previous);
    }
BlueprintNotFoundException