M4eServerException.fromString constructor

M4eServerException.fromString(String exception)

Implementation

factory M4eServerException.fromString(String exception) {
  return M4eServerException(
    code: M4eExceptionCode.kUndefinedExceptionCode,
    message: exception,
  );
}