mirror of
https://github.com/corda/corda.git
synced 2025-02-25 19:11:45 +00:00
Add kdoc to OnNextFailedException
This commit is contained in:
parent
9a2daeb5c9
commit
ddbcba3f2e
@ -63,5 +63,10 @@ class FlowSafeSubscriber<T>(actual: Subscriber<in T>) : SafeSubscriber<T>(actual
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We throw [OnNextFailedException] to pass the exception back through the preceding [Subscriber] chain
|
||||||
|
* without triggering any [SafeSubscriber.onError]s. Since we extending an [OnErrorNotImplementedException]
|
||||||
|
* the exception will be re-thrown at [Exceptions.throwOrReport].
|
||||||
|
*/
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
class OnNextFailedException(message: String, cause: Throwable) : OnErrorNotImplementedException(message, cause)
|
class OnNextFailedException(message: String, cause: Throwable) : OnErrorNotImplementedException(message, cause)
|
Loading…
x
Reference in New Issue
Block a user