java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.sql.SQLRuntimeException
java.sql.SQLDataSetSyncException
public class SQLDataSetSyncException
The subclass of SQLRuntimeException thrown
when an invocation of the sync method for a disconnected
DataSet fails.
| Constructor Summary | |
|---|---|
SQLDataSetSyncException(Throwable cause)
Constructs a SQLDataSetSyncException object with a given
cause. |
|
| Method Summary | |
|---|---|
DataSetResolver |
getDataSetResolver()
Retrieves a DataSetResolver object that contains
the rows that could not be propagated to the underlying data source
by calling the sync method on a disconnected DataSet. |
| 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 |
|---|
public SQLDataSetSyncException(Throwable cause)
SQLDataSetSyncException object with a given
cause.
The reason is initialized to null if
cause==null or to cause.toString() if
cause!=null.
cause - the underlying reason for this SQLDataSetSyncException
(which is saved for later retrieval by the getCause() method);
may be null indicating the cause is non-existent or unknown.| Method Detail |
|---|
public DataSetResolver getDataSetResolver()
DataSetResolver object that contains
the rows that could not be propagated to the underlying data source
by calling the sync method on a disconnected DataSet.