We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947254d commit e3fbd24Copy full SHA for e3fbd24
airbyte-server/src/main/kotlin/io/airbyte/server/apis/ApiHelper.kt
@@ -42,7 +42,7 @@ internal fun <T> execute(call: Callable<T>): T? {
42
)
43
is OperationNotAllowedException -> throw e
44
is IOException -> throw RuntimeException(e)
45
- is DataAccessException -> throw ConflictException("Failed to access database. Check the server logs for more information")
+ is DataAccessException -> throw ConflictException("Failed to access database. Check the server logs for more information", e)
46
else -> {
47
logger.error(e) { "Unexpected Exception" }
48
throw e
0 commit comments