PdfEditApplyException


class PdfEditApplyException : Exception


Represents an exception that occurred while applying edits on a PDF document.

Summary

Public constructors

PdfEditApplyException(
    failureIndex: Int,
    appliedEditIds: List<String>,
    cause: Throwable
)

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 EditsDraft.

Public constructors

PdfEditApplyException

Added in 1.0.0-alpha19
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 EditsDraft.

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

Added in 1.0.0-alpha19
val appliedEditIdsList<String>

A list of unique identifiers for the annotations that were successfully edited (inserted, updated, or removed) before the failure occurred.

failureIndex

Added in 1.0.0-alpha19
val failureIndexInt

The index of the operation that caused the failure, relative to the order in which operations were enqueued in the EditsDraft.