alltube-library/classes/exceptions/PopenStreamException.php
Pierre Rudloff 811e476402 Lint
2020-06-20 22:14:18 +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.';
}