-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor exceptions #43
Conversation
bb3a48d
to
034385c
Compare
034385c
to
6dc544b
Compare
I am waiting for feedback from @hannesvdvreken @dbu |
|
||
/** | ||
* @param TransferException[] $exceptions | ||
* @param ResponseInterface[] $responses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indention is wrong
looks good! i added some comments on the phpdoc and one visibility issue i suspect. it will be tricky to ensure that all adapters actually catch all relevant exceptions and identify them to throw the right exception in turn. |
*/ | ||
class ClientException extends HttpException | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line is not psr-2, sorry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to know, I always wondered if there is a standard for empty classes.
👍 For documentation: here's the inheritance tree for Exceptions:
Now copied here: php-http/documentation#7 to be incorporated in documentation. |
not sure if we want to put that into the doc. there is one mistake here, ServerException extends HttpException, not RequestException. (the code is correct, but the tree in above post not) |
@dbu You're right. Edited the comment. |
Hey guys, Thanks for all the comments, I really appreciate it. @dbu thanks for helping out with descriptions, I am not really good at it. About ensuring that the correct exceptions are thrown: the interface declares that exceptions must implement out interface, so even if the exception type is not correctly determined, it is still possible to catch all exceptions thrown by the client. I wonder if we should be strict about private types. Actually, I am not against it. We could even make Client and Server exceptions final, since those are thrown by the HttpException itself. @hannesvdvreken Thanks for the inheritance tree, looks good. We should definitely put it in the docs once we get there (or at least something similar. I admit that the inheritance tree is a bit complex and it is needed to be coved in the docs). |
yes, the doc should definitely explain the exception concept. the tree is imho nice but the most important is explaining in what situation which exception will be thrown. is there an issue about for doc already where we can add this? |
Not yet. The main reason I neglected documentation so far is the domain: @egeloen owns it and we cannot use it. |
Network, Client and Server exceptions are |
i am not that worried with people extending that exception so lets not
make the network one final.
|
Update discovery version and dependencies
This PR tries to address the following:
Feel free to start discussion about any of the above.
...let me start:
Setters are completely removed from exceptions (no
setResponse
,setRequest
). While I think this is the better way, I can imagine a case when some kind of event driven logic wants to modify the exceptions. Any ideas? Should we preserve the setter logic or force any event-driven one to create a new exception?Differences from Guzzle: Guzzle has a Request-Response exception pair, plus almost everything extends request exception. One difference is that the Network exception does NOT extend the request exception. It can be used in cases where the request does not get to a state where it makes sense to return it. Like a connection timed out. Another difference is that Response exception is called Http.