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

15 lines
238 B
PHP

<?php
namespace Alltube\Library\Exception;
/**
* Wrong password.
*/
class WrongPasswordException extends AlltubeLibraryException
{
/**
* Error message.
* @var string
*/
protected $message = 'Wrong password.';
}