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

kz.greetgo.db.SQLRuntimeException Maven / Gradle / Ivy

The newest version!
package kz.greetgo.db;

import java.sql.SQLException;

public class SQLRuntimeException extends RuntimeException {

  public final SQLException wrappedException;

  public SQLRuntimeException(SQLException e) {
    super(e);
    wrappedException = e;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy