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

de.opitzconsulting.orcas.sql.ExceptionManager Maven / Gradle / Ivy

The newest version!
package de.opitzconsulting.orcas.sql;

import java.sql.SQLException;

public class ExceptionManager
{
  public static RuntimeException createException( SQLException pE, String pSql )
  {
    return new RuntimeException( pE.getMessage() + " " + pSql, pE );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy