alltube-library/classes/exceptions/PopenStreamException.php

16 lines
262 B
PHP
Raw Normal View History

<?php
namespace Alltube\Library\Exception;
/**
* Could not open popen stream.
*/
class PopenStreamException extends AlltubeLibraryException
{
/**
2020-06-20 22:13:50 +02:00
* Error message.
* @var string
*/
protected $message = 'Could not open popen stream.';
}