We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d38c04 commit 3290b55Copy full SHA for 3290b55
core/src/main/java/io/github/project/openubl/xsender/camel/routes/SunatRouteBuilder.java
@@ -65,12 +65,12 @@ public void configure() {
65
66
// SOAP Exception
67
.onException(SoapFault.class)
68
- .handled(true)
+ .continued(true)
69
.process(new SoapSunatErrorResponseProcessor())
70
.end()
71
// REST exception
72
.onException(HttpOperationFailedException.class)
73
- .handled(exchange -> {
+ .continued(exchange -> {
74
HttpOperationFailedException httpException = exchange.getProperty(Exchange.EXCEPTION_CAUGHT, HttpOperationFailedException.class);
75
String contentType = httpException.getResponseHeaders().getOrDefault("Content-Type", "");
76
0 commit comments