alltube-library/classes/exceptions/WrongPasswordException.php

16 lines
238 B
PHP
Raw Normal View History

<?php
namespace Alltube\Library\Exception;
/**
* Wrong password.
*/
class WrongPasswordException extends AlltubeLibraryException
{
/**
2020-06-20 22:13:50 +02:00
* Error message.
* @var string
*/
protected $message = 'Wrong password.';
}