alltube-library/classes/Exception/WrongPasswordException.php
2020-07-01 22:56:08 +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.';
}