We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc52644 commit f890045Copy full SHA for f890045
airbyte-server/src/main/java/io/airbyte/server/apis/ApiHelper.java
@@ -9,6 +9,7 @@
9
import io.airbyte.server.errors.IdNotFoundKnownException;
10
import io.airbyte.validation.json.JsonValidationException;
11
import java.io.IOException;
12
+import org.slf4j.LoggerFactory;
13
14
public class ApiHelper {
15
@@ -23,6 +24,9 @@ static <T> T execute(final HandlerCall<T> call) {
23
24
String.format("The provided configuration does not fulfill the specification. Errors: %s", e.getMessage()), e);
25
} catch (final IOException e) {
26
throw new RuntimeException(e);
27
+ } catch (final Exception e) {
28
+ LoggerFactory.getLogger(ApiHelper.class).error("Unexpected Exception", e);
29
+ throw e;
30
}
31
32
0 commit comments