org.seasar.doma.jdbc
クラス SqlExecutionException

java.lang.Object
  上位を拡張 java.lang.Throwable
      上位を拡張 java.lang.Exception
          上位を拡張 java.lang.RuntimeException
              上位を拡張 org.seasar.doma.DomaException
                  上位を拡張 org.seasar.doma.jdbc.JdbcException
                      上位を拡張 org.seasar.doma.jdbc.SqlExecutionException
すべての実装されたインタフェース:
Serializable
直系の既知のサブクラス:
BatchSqlExecutionException

public class SqlExecutionException
extends JdbcException

SQLの実行に失敗した場合にスローされる例外です。

作成者:
taedium
関連項目:
直列化された形式

フィールドの概要
protected  String formattedSql
          フォーマット済みSQL、バッチ処理時にスローされた場合 null
protected  SqlKind kind
          SQLの種別
protected  String rawSql
          未加工SQL
protected  Throwable rootCause
          根本原因
protected  String sqlFilePath
          SQLファイルのパス、SQLが自動生成された場合 null
 
クラス org.seasar.doma.DomaException から継承されたフィールド
args, messageResource
 
コンストラクタの概要
  SqlExecutionException(ExceptionSqlLogType logType, Sql<?> sql, Throwable cause, Throwable rootCause)
          SQLを指定してインスタンスを構築します。
  SqlExecutionException(ExceptionSqlLogType logType, SqlKind kind, String rawSql, String formattedSql, String sqlFilePath, Throwable cause, Throwable rootCause)
          未加工SQLとフォーマット済みSQLを指定してインスタンスを構築します。
protected SqlExecutionException(MessageResource messageCode, SqlKind kind, String rawSql, String formattedSql, String sqlFilePath, Throwable cause, Throwable rootCause)
          メッセージコード、未加工SQL、フォーマット済みSQLを指定してインスタンスを構築します。
 
メソッドの概要
 String getFormattedSql()
          フォーマット済みSQLを返します。
 SqlKind getKind()
          SQLの種別を返します。
 String getRawSql()
          未加工SQLを返します。
 Throwable getRootCause()
          根本原因を返します。
 String getSqlFilePath()
          SQLファイルのパスを返します。
 
クラス org.seasar.doma.jdbc.JdbcException から継承されたメソッド
choiceSql
 
クラス org.seasar.doma.DomaException から継承されたメソッド
getArgs, getMessageResource
 
クラス java.lang.Throwable から継承されたメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

kind

protected final SqlKind kind
SQLの種別


rawSql

protected final String rawSql
未加工SQL


formattedSql

protected final String formattedSql
フォーマット済みSQL、バッチ処理時にスローされた場合 null


sqlFilePath

protected final String sqlFilePath
SQLファイルのパス、SQLが自動生成された場合 null


rootCause

protected final Throwable rootCause
根本原因

コンストラクタの詳細

SqlExecutionException

public SqlExecutionException(ExceptionSqlLogType logType,
                             Sql<?> sql,
                             Throwable cause,
                             Throwable rootCause)
SQLを指定してインスタンスを構築します。

パラメータ:
logType - ログタイプ
sql - SQL
cause - 原因
rootCause - 根本原因

SqlExecutionException

public SqlExecutionException(ExceptionSqlLogType logType,
                             SqlKind kind,
                             String rawSql,
                             String formattedSql,
                             String sqlFilePath,
                             Throwable cause,
                             Throwable rootCause)
未加工SQLとフォーマット済みSQLを指定してインスタンスを構築します。

パラメータ:
logType - ログタイプ
kind - SQLの種別
rawSql - 未加工SQL
formattedSql - フォーマット済みSQL
sqlFilePath - SQLファイルのパス
cause - 原因
rootCause - 根本原因

SqlExecutionException

protected SqlExecutionException(MessageResource messageCode,
                                SqlKind kind,
                                String rawSql,
                                String formattedSql,
                                String sqlFilePath,
                                Throwable cause,
                                Throwable rootCause)
メッセージコード、未加工SQL、フォーマット済みSQLを指定してインスタンスを構築します。

パラメータ:
messageCode - メッセージコード
kind - SQLの種別
rawSql - 未加工SQL
formattedSql - フォーマット済みSQL
sqlFilePath - SQLファイルのパス
cause - 原因
rootCause - 根本原因
メソッドの詳細

getKind

public SqlKind getKind()
SQLの種別を返します。

戻り値:
SQLの種別
導入されたバージョン:
1.5.0

getRawSql

public String getRawSql()
未加工SQLを返します。

戻り値:
未加工SQL

getFormattedSql

public String getFormattedSql()
フォーマット済みSQLを返します。

戻り値:
フォーマット済みSQL、存在しない場合 null

getSqlFilePath

public String getSqlFilePath()
SQLファイルのパスを返します。

戻り値:
SQLファイルのパス、SQLが自動生成された場合 null

getRootCause

public Throwable getRootCause()
根本原因を返します。

戻り値:
根本原因


Copyright © 2009-2014 The Seasar Foundation. All Rights Reserved.