-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganized the namespace structure. Updated readme.
- Loading branch information
Martin Brecht-Precht
committed
Apr 26, 2016
1 parent
4ca0113
commit 826b6f2
Showing
20 changed files
with
180 additions
and
31 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
4 changes: 3 additions & 1 deletion
4
src/ApiException/ApiException.php → src/ApiException/Base/ApiException.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
This file was deleted.
Oops, something went wrong.
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 CommonException\ApiException; | ||
|
||
/** | ||
* Class InvalidResponseException | ||
* | ||
* @package CommonException\ApiException | ||
*/ | ||
class InvalidResponseException extends Base\ApiException | ||
{ | ||
|
||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace CommonException\IoException; | ||
|
||
/** | ||
* Class FileCopyException | ||
* | ||
* @package CommonException\IoException | ||
*/ | ||
class FileCopyException extends Base\IoException | ||
{ | ||
|
||
} |
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 CommonException\IoException; | ||
|
||
/** | ||
* Class FileDeleteException | ||
* | ||
* @package CommonException\IoException | ||
*/ | ||
class FileDeleteException extends Base\IoException | ||
{ | ||
|
||
} |
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 CommonException\IoException; | ||
|
||
/** | ||
* Class FileMoveException | ||
* | ||
* @package CommonException\IoException | ||
*/ | ||
class FileMoveException extends Base\IoException | ||
{ | ||
|
||
} |
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 CommonException\IoException; | ||
|
||
/** | ||
* Class FileReadException | ||
* | ||
* @package CommonException\IoException | ||
*/ | ||
class FileReadException extends Base\IoException | ||
{ | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace CommonException\NetworkException\Base; | ||
|
||
use CommonException\Base; | ||
|
||
/** | ||
* Class NetworkException | ||
* | ||
* @package CommonException\NetworkException\Base | ||
*/ | ||
class NetworkException extends Base\BaseException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException\Base; | ||
|
||
/** | ||
* Class TimeoutException | ||
* | ||
* @package CommonException\NetworkException\Base | ||
*/ | ||
class TimeoutException extends NetworkException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException; | ||
|
||
/** | ||
* Class ConnectionException | ||
* | ||
* @package CommonException\NetworkException | ||
*/ | ||
class ConnectionException extends Base\NetworkException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException; | ||
|
||
/** | ||
* Class ConnectionTimeoutException | ||
* | ||
* @package CommonException\NetworkException | ||
*/ | ||
class ConnectionTimeoutException extends Base\TimeoutException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException; | ||
|
||
/** | ||
* Class CurlException | ||
* | ||
* @package CommonException\NetworkException | ||
*/ | ||
class CurlException extends Base\NetworkException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException; | ||
|
||
/** | ||
* Class ReadTimeoutException | ||
* | ||
* @package CommonException\NetworkException | ||
*/ | ||
class ReadTimeoutException extends Base\TimeoutException | ||
{ | ||
|
||
} |
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 CommonException\NetworkException; | ||
|
||
/** | ||
* Class WriteTimeoutException | ||
* | ||
* @package CommonException\NetworkException | ||
*/ | ||
class WriteTimeoutException extends Base\TimeoutException | ||
{ | ||
|
||
} |