mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
Перенесена логика join операции для современных серверов.
Нужно признать, что перенесена она так себе, но в будущем я обязательно это перепишу.
This commit is contained in:
10
api/modules/session/exceptions/IllegalArgumentException.php
Normal file
10
api/modules/session/exceptions/IllegalArgumentException.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace api\modules\session\exceptions;
|
||||
|
||||
class IllegalArgumentException extends SessionServerException {
|
||||
|
||||
public function __construct($status = null, $message = null, $code = 0, \Exception $previous = null) {
|
||||
parent::__construct(400, 'credentials can not be null.', $code, $previous);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user