Because we're performing this operation inside of a `Stream`, we have to throw unchecked exceptions. Streams do not allow us to propagate a checked exception, and the operations it's doing have the potential to throw checked exceptions, so wrapping it in an unchecked exception (and later throwing it if necessary) is the way to work around that limitation in `Stream`s.
[ Full content available at: https://github.com/apache/camel/pull/2454 ] This message was relayed via gitbox.apache.org for [email protected]
