mysql tests
Some checks failed
Gradle CI with Full Reports / build (push) Failing after 15m12s

This commit is contained in:
Jan-Philipp Luithardt
2025-12-18 09:17:23 +01:00
parent facb0556a0
commit 7f96f50fb7
73 changed files with 1013 additions and 902 deletions

View File

@@ -2,8 +2,8 @@
public class SQLNoConectionException extends RuntimeException {
public SQLNoConectionException(String message) {
<span class="fc" id="L6"> super(message);</span>
public SQLNoConectionException(String message, Exception e) {
<span class="fc" id="L6"> super(message + &quot; (&quot;+ e.getMessage()+&quot;)&quot;);</span>
<span class="fc" id="L7"> }</span>
}