InsufficienttFondsException constructor

const InsufficienttFondsException(
  1. String message
)

The exception is thrown when is insufficientt fonds.

Response form the server:

{
  "error": "insufficient-funds",
  "message": "Insufficient funds to transfer"
}

Implementation

const InsufficienttFondsException(String message) : super(message);