catchAdmin/extend/catcher/exceptions/LoginFailedException.php

7 lines
119 B
PHP
Raw Normal View History

2019-12-06 09:17:40 +08:00
<?php
2019-12-12 18:54:07 +08:00
namespace catcher\exceptions;
2019-12-06 09:17:40 +08:00
2019-12-15 13:38:47 +08:00
class LoginFailedException extends CatchException
2019-12-06 09:17:40 +08:00
{
2019-12-12 18:54:07 +08:00
protected $code = 10010;
}