forked from Netflix/ribbon
-
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.
First batch of update for ribbon 1.x branch.
- Added ribbon-rxnetty module for asynchronous HTTP communication based on Netty and RxJava - IClientConfig and IClientConfigKey supports typed property - Updates to serialization factory and serializer interfaces (replaced Guava TypeToken with TypeDef in the interfaces) - Updates to HttpRequest and HttpResponse interfaces with addition of HttpHeaders
- Loading branch information
Allen Wang
committed
Jan 9, 2014
1 parent
16bb5be
commit d3ca6bc
Showing
34 changed files
with
2,344 additions
and
157 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
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
21 changes: 21 additions & 0 deletions
21
ribbon-core/src/main/java/com/netflix/client/UnexpectedResponseException.java
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,21 @@ | ||
package com.netflix.client; | ||
|
||
public class UnexpectedResponseException extends Exception { | ||
|
||
/** | ||
* | ||
*/ | ||
private static final long serialVersionUID = 1L; | ||
|
||
public UnexpectedResponseException(String arg0, Throwable arg1) { | ||
super(arg0, arg1); | ||
} | ||
|
||
public UnexpectedResponseException(String arg0) { | ||
super(arg0); | ||
} | ||
|
||
public UnexpectedResponseException(Throwable arg0) { | ||
super(arg0); | ||
} | ||
} |
Oops, something went wrong.