MokaException.fromParsingException constructor

MokaException.fromParsingException(
  1. Exception error
)

Implementation

factory MokaException.fromParsingException(Exception error) {
  return MokaException(
    type: ExceptionType.serializationException,
    message: 'Failed to parse network response to model or vice versa',
  );
}