Skip navigation links


com.fatwire.services.exception
Class DataAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.fatwire.services.exception.DataAccessException

All Implemented Interfaces:
java.io.Serializable

public class DataAccessException
extends java.lang.Exception

Checked exception expected to be handled by data access modules.

All Data Access Objects must wrap checked exceptions thrown from lower layers with this exception.

See Also:
Serialized Form

Constructor Summary
DataAccessException()
          Calls Exception.Exception()
DataAccessException(java.lang.String message)
          Calls Exception.Exception(String)
DataAccessException(java.lang.String message, java.lang.Throwable cause)
          Calls Exception.Exception(String, Throwable)
DataAccessException(java.lang.Throwable cause)
          Calls Exception.Exception(Throwable)

 

Method Summary

 

Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

DataAccessException

public DataAccessException()
Calls Exception.Exception()

DataAccessException

public DataAccessException(java.lang.Throwable cause)
Calls Exception.Exception(Throwable)

DataAccessException

public DataAccessException(java.lang.String message)
Calls Exception.Exception(String)

DataAccessException

public DataAccessException(java.lang.String message,
                           java.lang.Throwable cause)
Calls Exception.Exception(String, Throwable)

Skip navigation links


Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.