alltube-library/classes/Exception/PopenStreamException.php
2020-07-01 22:56:08 +02:00

15 lines
262 B
PHP

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