alltube-library/classes/exceptions/PlaylistConversionException.php
Pierre Rudloff 811e476402 Lint
2020-06-20 22:14:18 +02:00

15 lines
295 B
PHP

<?php
namespace Alltube\Library\Exception;
/**
* Conversion of playlists is not supported.
*/
class PlaylistConversionException extends AlltubeLibraryException
{
/**
* Error message.
* @var string
*/
protected $message = 'Conversion of playlists is not supported.';
}