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