Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.data
Class DataSourceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.citra.pivot.olap.data.DataSourceException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OlapCursorException

public class DataSourceException
extends Exception

DataSourceException is the exception thrown from DataSources, identifying an error in the underlying data connection or in the passed arguments to the datasource's methods.


Constructor Summary
DataSourceException()
          Constructs a general DataSourceException.
DataSourceException(String message)
          Constructs a DataSourceException with the specified message.
DataSourceException(String message, Throwable cause)
          Constructs a DataSourceException with the specified message and cause.
DataSourceException(Throwable cause)
          Constructs a DataSourceException with the specified cause.
 
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

DataSourceException

public DataSourceException()
Constructs a general DataSourceException.


DataSourceException

public DataSourceException(String message)
Constructs a DataSourceException with the specified message.


DataSourceException

public DataSourceException(String message,
                           Throwable cause)
Constructs a DataSourceException with the specified message and cause.


DataSourceException

public DataSourceException(Throwable cause)
Constructs a DataSourceException with the specified cause.


Copyright © 2011 Citra Technologies. All Rights Reserved.