Skip to content

Commit

Permalink
Fix sonar issue on LockSQLException (apache#34211)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Dec 30, 2024
1 parent 5784155 commit 8e52107
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public abstract class LockSQLException extends KernelSQLException {

private static final int KERNEL_CODE = 5;

public LockSQLException(final SQLState sqlState, final int errorCode, final String reason, final Object... messageArguments) {
protected LockSQLException(final SQLState sqlState, final int errorCode, final String reason, final Object... messageArguments) {
super(sqlState, KERNEL_CODE, errorCode, reason, messageArguments);
}
}

0 comments on commit 8e52107

Please sign in to comment.