Package com.poscoict.glueframework.dao
Class GlueDaoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.poscoict.glueframework.GlueException
com.poscoict.glueframework.dao.GlueDaoException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GlueBadSqlGrammarException
,GlueDataAccessResourceFailureException
,GlueDataIntegrityViolationException
,GlueUncategorizedSQLException
Data Access Object(DAO) 관련 Exception이 발생했을 때 쓰로우 된다.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGlueDaoException
(String msg) 생성자(constructor).GlueDaoException
(String msg, Throwable cause) 생성자(constructor). -
Method Summary
Modifier and TypeMethodDescriptionint
Database Error Code를 얻는다.getSql()
SQL Query Statement를 얻는다.void
setErrorCode
(int errorCode) Database Error Code를 설정한다.void
SQL Query Statement를 설정한다.Methods inherited from class com.poscoict.glueframework.GlueException
getRootCause, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
GlueDaoException
생성자(constructor).- Parameters:
msg
-
-
GlueDaoException
생성자(constructor).- Parameters:
msg
-cause
-
-
-
Method Details
-
getErrorCode
public int getErrorCode()Database Error Code를 얻는다.- Returns:
- Error Code
-
setErrorCode
public void setErrorCode(int errorCode) Database Error Code를 설정한다.- Parameters:
errorCode
- Error Code
-
getSql
SQL Query Statement를 얻는다.- Returns:
- SQL Query Statement
-
setSql
SQL Query Statement를 설정한다.- Parameters:
sql
- SQL Query Statement
-