org.springframework.dao
Class UncategorizedDataAccessException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.dao.DataAccessException
                      extended byorg.springframework.dao.UncategorizedDataAccessException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
HibernateJdbcException, HibernateSystemException, JdoSystemException, OjbOperationException, SQLWarningException, 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

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
UncategorizedDataAccessException(String msg, Throwable ex)
          Constructor for UncategorizedDataAccessException.
 
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) 2003-2004 The Spring Framework Project.