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

com.mageddo.tobby.UncheckedSQLException Maven / Gradle / Ivy

There is a newer version: 2.1.6-alpha
Show newest version
package com.mageddo.tobby;

import java.sql.SQLException;

public class UncheckedSQLException extends RuntimeException {

  private final SQLException delegate;

  public UncheckedSQLException(SQLException delegate) {
    super(delegate);
    this.delegate = delegate;
  }

  public SQLException getDelegate() {
    return delegate;
  }

  public static UncheckedSQLException wrap(SQLException e){
    throw new UncheckedSQLException(e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy