PaymentNetworkException constructor

PaymentNetworkException(
  1. String message, {
  2. dynamic cause,
})

Creates a new PaymentNetworkException with the specified message and cause.

The message should describe the specific network issue encountered. The cause is the original error that triggered this exception.

Implementation

PaymentNetworkException(super.message, {super.cause})
    : super(errorType: PaymentErrorType.network);