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