PaymentNetworkException constructor
PaymentNetworkException(
- String message, {
- 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);