borland Packages  Class Hierarchy  sql.dataset Package  Index 

ResolutionException class

java.lang.Object
   +----java.lang.Throwable
           +----java.lang.Exception
                   +----borland.jbcl.dataset.DataSetException
                           +----borland.sql.dataset.ResolutionException

About the ResolutionException class

Variables  Constructors  Properties  Methods  

Implements ChainedException, Serializable

The ResolutionException class defines error constants and behavior associated with error conditions encountered when resolving changes made to data back to its data source. It extends DataSetException and may include chained exceptions.

See also: DataSetException, ExceptionDialog


ResolutionException variables

Variables implemented in this class

Variables implemented in borland.jbcl.dataset.DataSetException

ResolutionException constructors

ResolutionException properties

*Read-only properties **Write-only properties

Properties implemented in this class

Properties implemented in borland.jbcl.dataset.DataSetException

Properties implemented in java.lang.Object

Properties implemented in java.lang.Throwable

ResolutionException methods

Methods implemented in borland.jbcl.dataset.DataSetException

Methods implemented in java.lang.Object

Methods implemented in java.lang.Throwable


ResolutionException variables

dataSet

  public transient DataSet dataSet
The DataSet object that generated the ResolutionException.

DELETE_FAILED

  public static final int DELETE_FAILED = BASE+2
Attempted to delete a value in a DataSet that has been set to readOnly.

INSERT_FAILED

  public static final int INSERT_FAILED = BASE+1
Attempted to insert a value in a DataSet that has been set to readOnly.

UPDATE_FAILED

  public static final int UPDATE_FAILED = BASE+3
Master rows that have detail rows linked to them cannot be deleted or have their linking columns modified.

ResolutionException constructors

ResolutionException(int, borland.jbcl.dataset.DataSet, java.lang.String, java.lang.Exception)

  public ResolutionException(int errorCode, borland.jbcl.dataset.DataSet dataSet, java.lang.String message, java.lang.Exception ex)
Constructs a ResolutionException object with the following parameters:

Parameters:

errorCode
The integer value associated with this error.
dataSet
The DataSet object that generated this error.
message
The string message associated with this error.
ex
The Exception object.

ResolutionException properties

dataSet

 public DataSet getDataSet()
Read-only property that returns the DataSet object that generated the ResolutionException.