001package io.ebean.datasource;
002
003/**
004 * Exception that can be thrown when the datasource fails to be created.
005 */
006public class DataSourceInitialiseException extends RuntimeException {
007
008  public DataSourceInitialiseException(String message) {
009    super(message);
010  }
011
012  public DataSourceInitialiseException(String message, Throwable e) {
013    super(message, e);
014  }
015
016}