alltube-library/classes/exceptions/WrongPasswordException.php

15 lines
231 B
PHP
Raw Normal View History

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