diff --git a/old/src/PointToolsBundle/Exception/Api/ApiException.php b/old/src/PointToolsBundle/Exception/Api/ApiException.php deleted file mode 100644 index c1f5ed5..0000000 --- a/old/src/PointToolsBundle/Exception/Api/ApiException.php +++ /dev/null @@ -1,8 +0,0 @@ -userId = $userId; - $this->login = $login; - } - - public function getUserId(): int - { - return $this->userId; - } - - public function getLogin(): string - { - return $this->login; - } -} \ No newline at end of file diff --git a/src/Exception/Api/ApiException.php b/src/Exception/Api/ApiException.php new file mode 100644 index 0000000..3f81cc9 --- /dev/null +++ b/src/Exception/Api/ApiException.php @@ -0,0 +1,9 @@ +userId; + } + + public function getLogin(): ?string + { + return $this->login; + } +}