-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eugene Chernyshenko
committed
May 28, 2021
1 parent
df01ddf
commit 14958a0
Showing
11 changed files
with
61 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
src/eugene-chernyshenko/ipgeobaseclient/exceptions/ClientException.php
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/eugene-chernyshenko/ipgeobaseclient/exceptions/IPNotFoundException.php
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/eugene-chernyshenko/ipgeobaseclient/exceptions/InvalidIPException.php
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/eugene-chernyshenko/ipgeobaseclient/exceptions/ResponseException.php
This file was deleted.
Oops, something went wrong.
10 changes: 5 additions & 5 deletions
10
...e-chernyshenko/ipgeobaseclient/Client.php → ...nechernyshenko/ipgeobaseclient/Client.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/eugenechernyshenko/ipgeobaseclient/exceptions/ClientException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace eugenechernyshenko\ipgeobaseclient\exceptions; | ||
|
||
/** | ||
* Class ClientException | ||
* | ||
* @package eugenechernyshenko\ipgeobaseclient\exceptions | ||
*/ | ||
class ClientException extends \Exception | ||
{ | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/eugenechernyshenko/ipgeobaseclient/exceptions/IPNotFoundException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace eugenechernyshenko\ipgeobaseclient\exceptions; | ||
|
||
/** | ||
* Class IPNotFoundException | ||
* | ||
* @package eugenechernyshenko\ipgeobaseclient\exceptions | ||
*/ | ||
class IPNotFoundException extends ClientException | ||
{ | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/eugenechernyshenko/ipgeobaseclient/exceptions/InvalidIPException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace eugenechernyshenko\ipgeobaseclient\exceptions; | ||
|
||
/** | ||
* Class InvalidIPException | ||
* | ||
* @package eugenechernyshenko\ipgeobaseclient\exceptions | ||
*/ | ||
class InvalidIPException extends ClientException | ||
{ | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/eugenechernyshenko/ipgeobaseclient/exceptions/ResponseException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace eugenechernyshenko\ipgeobaseclient\exceptions; | ||
|
||
/** | ||
* Class ResponseException | ||
* | ||
* @package eugenechernyshenko\ipgeobase\client\exceptions | ||
*/ | ||
class ResponseException extends ClientException | ||
{ | ||
|
||
} |