PdfEditApplyException
class PdfEditApplyException : Exception
Represents an exception that occurred while applying edits on a PDF document.
Summary
Public constructors |
|---|
PdfEditApplyException( |
Public properties |
|
|---|---|
List<String> |
A list of unique identifiers for the annotations that were successfully edited (inserted, updated, or removed) before the failure occurred. |
Int |
The index of the operation that caused the failure, relative to the order in which operations were enqueued in the |
Inherited functions |
||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Inherited properties |
|---|
Public constructors
PdfEditApplyException
PdfEditApplyException(
failureIndex: Int,
appliedEditIds: List<String>,
cause: Throwable
)
| Parameters | |
|---|---|
failureIndex: Int |
The index of the operation that caused the failure, relative to the order in which operations were enqueued in the |
appliedEditIds: List<String> |
A list of unique identifiers for the annotations that were successfully edited (inserted, updated, or removed) before the failure occurred. |
cause: Throwable |
The underlying cause of the failure. |
Public properties
appliedEditIds
val appliedEditIds: List<String>
A list of unique identifiers for the annotations that were successfully edited (inserted, updated, or removed) before the failure occurred.
failureIndex
val failureIndex: Int
The index of the operation that caused the failure, relative to the order in which operations were enqueued in the EditsDraft.