Skip to content

Commit

Permalink
Replaced error log with exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfensdrfer committed Apr 11, 2019
1 parent f208452 commit 455d3f7
Show file tree
Hide file tree
Showing 5 changed files with 373 additions and 116 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"php": ">=7.2",
"ext-json": "*",
"voku/httpful": "0.4.*"
},
},
"require-dev": {
"phpunit/phpunit": "8.1.*"
},
Expand Down
6 changes: 6 additions & 0 deletions src/InvalidRequestException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php namespace VisualAppeal;

class InvalidRequestException extends \Exception
{
//
}
6 changes: 6 additions & 0 deletions src/InvalidResponseException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php namespace VisualAppeal;

class InvalidResponseException extends \Exception
{
//
}
Loading

0 comments on commit 455d3f7

Please sign in to comment.