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

org.knowm.yank.exceptions.SQLStatementNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package org.knowm.yank.exceptions;

/** An exception to indicate that an SQL statement could not be found for the given key String */
public class SQLStatementNotFoundException extends RuntimeException {

  /** Constructor */
  public SQLStatementNotFoundException() {

    super(
        "The SQL statement could not be found for the given key String. Make sure you have a file called *.properties on the classpath with valid key value pairs!");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy