alltube-library/classes/exceptions/PlaylistConversionException.php
Pierre Rudloff 98b74fd6f2 Initial import from Alltube app
Removed dependency on Config and LocaleManager classes
Avoid using generic exceptions
2020-06-20 19:19:37 +02:00

14 lines
287 B
PHP

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