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

jp.co.future.uroborosql.exception.SqlParserRuntimeException Maven / Gradle / Ivy

/**
 * Copyright (c) 2017-present, Future Corporation
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
package jp.co.future.uroborosql.exception;

/**
 * SQLパース時の実行時例外
 *
 * @author H.Sugimoto
 */
public class SqlParserRuntimeException extends UroborosqlRuntimeException {

	public SqlParserRuntimeException() {
	}

	public SqlParserRuntimeException(final String message) {
		super(message);
	}

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

	public SqlParserRuntimeException(final Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy