alltube-library/classes/exceptions/PopenStreamException.php

15 lines
254 B
PHP
Raw Normal View History

<?php
namespace Alltube\Library\Exception;
/**
* Could not open popen stream.
*/
class PopenStreamException extends AlltubeLibraryException
{
/**
* @var string Error message
*/
protected $message = 'Could not open popen stream.';
}