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

kz.greetgo.security.util.ErrorUtil Maven / Gradle / Ivy

There is a newer version: 0.0.12
Show newest version
package kz.greetgo.security.util;

import java.sql.SQLException;

public class ErrorUtil {
  public static SQLException extractSqlException(Throwable e) {

    while (e != null) {
      if (e instanceof SQLException) {
        return (SQLException) e;
      }

      e = e.getCause();
    }

    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy