GH-508 Fix casting of the exception in AzureSpringBootRequestHandler
This commit is contained in:
@@ -96,7 +96,7 @@ public class AzureSpringBootRequestHandler<I, O> extends AbstractSpringFunctionA
|
||||
if (context != null) {
|
||||
context.getLogger().throwing(getClass().getName(), "handle", ex);
|
||||
}
|
||||
throw (RuntimeException) ex;
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user