| org.jaffa.persistence.exceptions.UOWException org.jaffa.persistence.engines.jdbcengine.datasource.exceptions.DataSourceCreationException
DataSourceCreationException | public class DataSourceCreationException extends UOWException (Code) | | This exception is thrown if any error occurs while creating a DataSource.
|
CONNECTION_FACTORY_CREATION_FAILED | final public static String CONNECTION_FACTORY_CREATION_FAILED(Code) | | One of the reasons for throwing this exception
|
CONNECTION_FAILED | final public static String CONNECTION_FAILED(Code) | | One of the reasons for throwing this exception
|
JDBC_PLUGIN_CREATION_FAILED | final public static String JDBC_PLUGIN_CREATION_FAILED(Code) | | One of the reasons for throwing this exception
|
NEW_CONNECTION_OF_JDBC_PLUGIN_FAILED | final public static String NEW_CONNECTION_OF_JDBC_PLUGIN_FAILED(Code) | | One of the reasons for throwing this exception
|
SET_AUTO_COMMIT_FAILED | final public static String SET_AUTO_COMMIT_FAILED(Code) | | One of the reasons for throwing this exception
|
DataSourceCreationException | public DataSourceCreationException(String subCode)(Code) | | Creates an exception with the errorCode.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. |
DataSourceCreationException | public DataSourceCreationException(String subCode, Object[] arguments)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. |
DataSourceCreationException | public DataSourceCreationException(String subCode, Object[] arguments, Throwable cause)(Code) | | Creates an exception with the errorCode and a cause.
Parameters: subCode - The reason for the exception. This should be on of the statics defined in this class. Parameters: arguments - the arguments, if any, that need to be merged into the error message from the resource bundle. Parameters: cause - the cause. |
|
|