39 lines
727 B
PHP
39 lines
727 B
PHP
<?php
|
|
|
|
namespace Skobkin\Bundle\PointToolsBundle\Service\Exceptions;
|
|
|
|
|
|
class UserNotFoundException extends ApiException
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $userId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $login;
|
|
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
* @param int $userId
|
|
*/
|
|
public function __construct($message = 'User not found', $code = 0, \Exception $previous = null, $userId = null, $login = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
$this->userId = $userId;
|
|
$this->login = $login;
|
|
}
|
|
|
|
public function getUserId(): int
|
|
{
|
|
return $this->userId;
|
|
}
|
|
|
|
public function getLogin(): string
|
|
{
|
|
return $this->login;
|
|
}
|
|
} |