Merge remote-tracking branch 'open/master' into tudor-os-merge-7-jun

# Conflicts:
#	node/src/main/kotlin/net/corda/node/internal/AbstractNode.kt
#	node/src/main/kotlin/net/corda/node/internal/NodeStartup.kt
This commit is contained in:
tudor.malene@gmail.com
2018-06-07 16:05:11 +01:00
5 changed files with 37 additions and 13 deletions

View File

@ -296,4 +296,6 @@ private fun Throwable.hasSQLExceptionCause(): Boolean =
null -> false
is SQLException -> true
else -> cause?.hasSQLExceptionCause() ?: false
}
}
class CouldNotCreateDataSourceException(override val message: String?, override val cause: Throwable? = null) : Exception()