alltube-library/classes/Exception/PlaylistConversionException.php

16 lines
295 B
PHP
Raw Permalink Normal View History

<?php
namespace Alltube\Library\Exception;
/**
* Conversion of playlists is not supported.
*/
class PlaylistConversionException extends AlltubeLibraryException
{
/**
2020-06-20 22:13:50 +02:00
* Error message.
* @var string
*/
protected $message = 'Conversion of playlists is not supported.';
}