prependExceptionTypeIdentifier method

void prependExceptionTypeIdentifier(
  1. ExceptionTypeIdentifier exceptionTypeIdentifier
)

Adds an exception type identifier to the beginning of the list. This ensures it is processed first and takes precedence over existing identifiers.

Implementation

void prependExceptionTypeIdentifier(
    ExceptionTypeIdentifier exceptionTypeIdentifier) {
  addExceptionTypeIdentifierByIndex(0, exceptionTypeIdentifier);
}