com.programix.da
Class DataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.programix.da.DataAccessException
- All Implemented Interfaces:
- Serializable
public class DataAccessException
- extends Exception
Thrown to indicate a technical problem with the 'Data Access Layer' inner
workings. For example, instead of throwing an SQLException
if there were problems talking to the database, chain it to a
DataAccessException and throw that instead. However, if there
was another kind of problem (like a required value missing) and if the
application was able to communicate with the network, file, database,
remote object, or whatever, DataAccessExcepion should NOT be
used—use an application-specific exception instead.
DataAccessException means a part of the subsystem failed.
- Author:
- Paul Hyde
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
DataAccessException
public DataAccessException()
DataAccessException
public DataAccessException(String message)
DataAccessException
public DataAccessException(Throwable cause)
DataAccessException
public DataAccessException(String message,
Throwable cause)
Copyright © 2001-2009
Programix Incorporated.
All rights reserved.
ProgramixGenericLib is free
and is
OSI Certified
Open Source Software under the BSD
license.