-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
134 changed files
with
3,989 additions
and
1,056 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
matchbook-sdk-core/src/main/java/com/matchbook/sdk/core/StreamObserver.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
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
public enum ErrorType { | ||
|
||
HTTP, UNAUTHENTICATED | ||
HTTP, UNAUTHENTICATED, PARSING | ||
|
||
} |
19 changes: 19 additions & 0 deletions
19
...dk-core/src/main/java/com/matchbook/sdk/core/exceptions/MatchbookSDKParsingException.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,19 @@ | ||
package com.matchbook.sdk.core.exceptions; | ||
|
||
public class MatchbookSDKParsingException extends MatchbookSDKException { | ||
|
||
private static final long serialVersionUID = 4808543873575620833L; | ||
|
||
public MatchbookSDKParsingException(String message, Throwable cause) { | ||
super(message, cause, ErrorType.PARSING); | ||
} | ||
|
||
public MatchbookSDKParsingException(String message) { | ||
super(message, ErrorType.PARSING); | ||
} | ||
|
||
public MatchbookSDKParsingException(Throwable cause) { | ||
super(cause, ErrorType.PARSING); | ||
} | ||
|
||
} |
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
Oops, something went wrong.