Skip to content

Commit

Permalink
Deprecate RuntimeSQLException for removal
Browse files Browse the repository at this point in the history
Closes #508
  • Loading branch information
sleberknight committed Jul 31, 2024
1 parent 869e786 commit 0c50479
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/org/kiwiproject/test/jdbc/RuntimeSQLException.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
package org.kiwiproject.test.jdbc;

import org.kiwiproject.base.KiwiDeprecated;
import org.kiwiproject.base.KiwiPreconditions;
import org.kiwiproject.base.KiwiDeprecated.Severity;

import java.sql.SQLException;

/**
* Unchecked exception that wraps a {@link SQLException}.
*
* @deprecated replaced by UncheckedSQLException in kiwi 4.2.0
*/
@Deprecated(since = "3.6.0", forRemoval = true)
@KiwiDeprecated(
removeAt = "4.0.0",
replacedBy = "org.kiwiproject.jdbc.UncheckedSQLException",
reference = "https://github.com/kiwiproject/kiwi-test/issues/508",
usageSeverity = Severity.SEVERE
)
public class RuntimeSQLException extends RuntimeException {

/**
Expand Down

0 comments on commit 0c50479

Please sign in to comment.