public class java.sql
SQLDataSetSyncException


Show All Login
Java SE 6
  
Extends: Throwable > Exception > RuntimeException > SQLRuntimeException
Details
The subclass of SQLRuntimeException thrown when an invocation of the sync method for a disconnected DataSet fails.
since1.6

Constructors
public SQLDataSetSyncException(Throwable cause, DataSetResolver ds) Details
Reconstructs a SQLDataSetSyncException object with a given cause. The reason is initialized to null if cause==null or to cause.toString() if cause!=null.

causethe 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.
dsa DataSetSetResolver containing the rows caused the conflict.
since1.6


Properties
public 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.