alltube-library/classes/exceptions/PlaylistConversionException.php

15 lines
287 B
PHP
Raw Normal View History

<?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.';
}