-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TryOnError -> RxDogTagErrorReceiver DeliverModifiedException -> RxDogTagModifiedExceptionReceiver
- Loading branch information
Showing
7 changed files
with
24 additions
and
16 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
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
11 changes: 0 additions & 11 deletions
11
rxdogtag/src/main/java/com/uber/rxdogtag/RxDogTagModifiedExceptionReceiver.java
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
rxdogtag/src/main/java/com/uber/rxdogtag/RxDogTagTaggedExceptionReceiver.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.uber.rxdogtag; | ||
|
||
import io.reactivex.exceptions.OnErrorNotImplementedException; | ||
|
||
/** | ||
* A marker type to indicate that RxDogTag's should pass the decorated stacktrace to | ||
* {@link #onError(Throwable)}. Note that this will always be tried directly, and no guarded | ||
* delegate behavior will be attempted even if | ||
* {@link RxDogTag.Builder#guardObserverCallbacks(boolean)} is enabled in configuration. | ||
* | ||
* <p><em>NOTE:</em> RxDogTag exceptions are always | ||
* {@link OnErrorNotImplementedException OnErrorNotImplementedExceptions}, as these have special | ||
* behavior as an escape hatch in RxJava internals. This exception will have no "cause" property if | ||
* the original exception was not already an {@link OnErrorNotImplementedException}. If it was, | ||
* which is unusual, it is reused with its original cause (if any) and has its stacktrace modified. | ||
*/ | ||
public interface RxDogTagTaggedExceptionReceiver extends RxDogTagErrorReceiver { | ||
|
||
} |