Skip to content

Commit 68e2109

Browse files
committed
Add throws doc
1 parent 1aa5208 commit 68e2109

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

src/main/java/io/reactivex/CompletableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public interface CompletableConverter<R> {
2828
*
2929
* @param upstream the upstream Completable instance
3030
* @return the converted value
31+
* @throws Exception on error
3132
*/
3233
@NonNull
3334
R apply(@NonNull Completable upstream) throws Exception;

src/main/java/io/reactivex/FlowableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public interface FlowableConverter<T, R> {
2929
*
3030
* @param upstream the upstream Flowable instance
3131
* @return the converted value
32+
* @throws Exception on error
3233
*/
3334
@NonNull
3435
R apply(@NonNull Flowable<T> upstream) throws Exception;

src/main/java/io/reactivex/MaybeConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public interface MaybeConverter<T, R> {
2929
*
3030
* @param upstream the upstream Maybe instance
3131
* @return the converted value
32+
* @throws Exception on error
3233
*/
3334
@NonNull
3435
R apply(@NonNull Maybe<T> upstream) throws Exception;

src/main/java/io/reactivex/ObservableConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public interface ObservableConverter<T, R> {
2929
*
3030
* @param upstream the upstream Observable instance
3131
* @return the converted value
32+
* @throws Exception on error
3233
*/
3334
@NonNull
3435
R apply(@NonNull Observable<T> upstream) throws Exception;

src/main/java/io/reactivex/SingleConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public interface SingleConverter<T, R> {
2929
*
3030
* @param upstream the upstream Single instance
3131
* @return the converted value
32+
* @throws Exception on error
3233
*/
3334
@NonNull
3435
R apply(@NonNull Single<T> upstream) throws Exception;

0 commit comments

Comments
 (0)