This commit is contained in:
Pierre Rudloff 2020-06-20 22:13:50 +02:00
parent c0442f6ce6
commit 811e476402
4 changed files with 8 additions and 4 deletions

View file

@ -12,7 +12,8 @@ namespace Alltube\Library\Exception;
class EmptyUrlException extends AlltubeLibraryException
{
/**
* @var string Error message
* Error message.
* @var string
*/
protected $message = 'youtube-dl returned an empty URL.';
}

View file

@ -8,7 +8,8 @@ namespace Alltube\Library\Exception;
class PlaylistConversionException extends AlltubeLibraryException
{
/**
* @var string Error message
* Error message.
* @var string
*/
protected $message = 'Conversion of playlists is not supported.';
}

View file

@ -8,7 +8,8 @@ namespace Alltube\Library\Exception;
class PopenStreamException extends AlltubeLibraryException
{
/**
* @var string Error message
* Error message.
* @var string
*/
protected $message = 'Could not open popen stream.';
}

View file

@ -8,7 +8,8 @@ namespace Alltube\Library\Exception;
class WrongPasswordException extends AlltubeLibraryException
{
/**
* @var string Error message.
* Error message.
* @var string
*/
protected $message = 'Wrong password.';
}