All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladmihalcea.sql.exception.SQLUpdateCountMismatchException Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.vladmihalcea.sql.exception;

/**
 * SQLUpdateCountMismatchException - Thrown whenever there is a mismatch between expected update statements count and
 * the ones being executed.
 *
 * @author Vlad Mihalcea
 */
public class SQLUpdateCountMismatchException extends SQLStatementCountMismatchException {

    public SQLUpdateCountMismatchException(long expected, long recorded) {
        super(expected, recorded);
    }

    public SQLUpdateCountMismatchException(String message, long expected, long recorded) {
        super(message, expected, recorded);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy