Ontimize 5.2072EN

com.ontimize.db.sql
Class SQLHandlerException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.ontimize.db.sql.SQLHandlerException
All Implemented Interfaces:
java.io.Serializable

public class SQLHandlerException
extends java.lang.Exception

See Also:
Serialized Form

Field Summary
protected  ISQLInfo info
          ISQLInfo object that contains the whole SQL information(error operation, executed statements...)
 
Constructor Summary
SQLHandlerException(java.lang.Throwable t, ISQLInfo info)
          Constructs a new SQLHandlerException with the specified detail SQL information and cause
 
Method Summary
 ISQLInfo getSQLInfo()
          Returns the SQL information.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

info

protected ISQLInfo info
ISQLInfo object that contains the whole SQL information(error operation, executed statements...)

Constructor Detail

SQLHandlerException

public SQLHandlerException(java.lang.Throwable t,
                           ISQLInfo info)
Constructs a new SQLHandlerException with the specified detail SQL information and cause

Parameters:
t - The cause (which is saved for later retrieval by the Throwable.getCause() method).
info - ISQLInfo object with the whole SQL information.
Method Detail

getSQLInfo

public ISQLInfo getSQLInfo()
Returns the SQL information.

Returns:
a ISQLInfo

Ontimize