catchAdmin/extend/catcher/exceptions/LoginFailedException.php

14 lines
256 B
PHP
Raw Normal View History

2019-12-06 09:17:40 +08:00
<?php
2020-11-29 09:29:14 +08:00
declare(strict_types=1);
2019-12-12 18:54:07 +08:00
namespace catcher\exceptions;
2019-12-06 09:17:40 +08:00
2019-12-22 09:37:52 +08:00
use catcher\Code;
2019-12-15 13:38:47 +08:00
class LoginFailedException extends CatchException
2019-12-06 09:17:40 +08:00
{
2019-12-22 09:37:52 +08:00
protected $code = Code::LOGIN_FAILED;
2020-01-07 17:27:55 +08:00
protected $message = 'Login Failed! Please check you email or password';
}