getCauseString method

String? getCauseString()
inherited

Gets original error wrapped by this exception as a string message.

Returns an original error message.

Implementation

String? getCauseString() {
  return cause?.toString();
}