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

com.firefly.db.init.CannotReadScriptException Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.db.init;

import com.firefly.utils.io.EncodedResource;

/**
 * Thrown by {@link ScriptUtils} if an SQL script cannot be read.
 */
@SuppressWarnings("serial")
public class CannotReadScriptException extends ScriptException {

	/**
	 * Construct a new {@code CannotReadScriptException}.
	 * 
	 * @param resource
	 *            the resource that cannot be read from
	 * @param cause
	 *            the underlying cause of the resource access failure
	 */
	public CannotReadScriptException(EncodedResource resource, Throwable cause) {
		super("Cannot read SQL script from " + resource, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy