mirror of
https://github.com/elyby/accounts.git
synced 2024-11-01 00:13:06 +05:30
11 lines
302 B
PHP
11 lines
302 B
PHP
<?php
|
|
namespace api\modules\session\exceptions;
|
|
|
|
class IllegalArgumentException extends SessionServerException {
|
|
|
|
public function __construct($message = 'credentials can not be null.', $code = 0, \Exception $previous = null) {
|
|
parent::__construct(400, $message, $code, $previous);
|
|
}
|
|
|
|
}
|