* Framework version: 1.3.2 * Implementations: All (core) ## Scenario The [`proxyStream()` method of `LambdaContainerHandler`](https://github.com/awslabs/aws-serverless-java-container/blob/master/aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/LambdaContainerHandler.java#L212) does not catch all exceptions and pass them to the `ExceptionHandler object`. ## Expected behavior Exceptions should be caught and passed to the `ExceptionHandler` object to generate a response. The `proxy()` method [implements this behavior](https://github.com/awslabs/aws-serverless-java-container/blob/master/aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/LambdaContainerHandler.java#L186) correctly.