org.springframework.dao
Class UncategorizedDataAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.dao.DataAccessException
                      extended by org.springframework.dao.UncategorizedDataAccessException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
HibernateJdbcException, HibernateJdbcException, HibernateSystemException, HibernateSystemException, JdoSystemException, OjbOperationException, SQLWarningException, TopLinkJdbcException, TopLinkSystemException, UncategorizedSQLException

public abstract class UncategorizedDataAccessException
extends DataAccessException

Normal superclass when we can't distinguish anything more specific than "something went wrong with the underlying resource": for example, a SQLException from JDBC we can't pinpoint more precisely.

Author:
Rod Johnson
See Also:
Serialized Form

Constructor Summary
UncategorizedDataAccessException(String msg, Throwable ex)
          Constructor for UncategorizedDataAccessException.
 
Method Summary
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UncategorizedDataAccessException

public UncategorizedDataAccessException(String msg,
                                        Throwable ex)
Constructor for UncategorizedDataAccessException.

Parameters:
msg - description of failure
ex - exception thrown by underlying data access API


Copyright (c) 2002-2005 The Spring Framework Project.