Class ErrEntry
java.lang.Object
com.github.sttk.sabi.ErrEntry
Represents an error entry containing details of a failure associated with a specific data source
or data connection.
Instances of this class record the positional index, logical name, and cause of an error when batch operations (such as global/local data source setup or connection pre-commit, commit, and post-commit phases) encounter errors across multiple connections.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal com.github.sttk.errs.ErrThe error instance containing details of the failure cause.final intThe positional index of the data source or connection in the operation sequence.final StringThe logical name of the data source or connection where the error occurred. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
index
public final int indexThe positional index of the data source or connection in the operation sequence. -
name
The logical name of the data source or connection where the error occurred. -
err
public final com.github.sttk.errs.Err errThe error instance containing details of the failure cause.
-
-
Constructor Details
-
ErrEntry
Constructs a newErrEntrywith the specified index, name, and error cause.- Parameters:
index- the positional index of the data source or connectionname- the logical name of the data source or connectionerr- the error instance detailing the failure cause
-