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

org.openmetadata.service.util.jdbi.DatabaseAuthenticationProviderException Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.service.util.jdbi;

/** Database authentication provider exception responsible to all generic exception thrown by this layer. */
public class DatabaseAuthenticationProviderException extends RuntimeException {
  public DatabaseAuthenticationProviderException() {}

  public DatabaseAuthenticationProviderException(String message) {
    super(message);
  }

  public DatabaseAuthenticationProviderException(String message, Throwable cause) {
    super(message, cause);
  }

  public DatabaseAuthenticationProviderException(Throwable cause) {
    super(cause);
  }

  public DatabaseAuthenticationProviderException(
      String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy