toString method
override
The string representation of this exception for debugging.
Returns the runtime type name followed by message, making it easy to identify the specific exception subclass in logs.
Example output:
NetworkAppException: Failed to connect to server
ValidationException: Invalid email format
Implementation
@override
String toString() {
final String issuesString = jailBreakIssues.isEmpty
? '[]'
: '[${jailBreakIssues.map((JailbreakIssue e) => e.toString().split('.').last).join(', ')}]';
return 'MultiJailbreakException('
'checkName: $checkName, '
'message: $message, '
'jailBreakIssues: $issuesString, '
'originalError: $originalError'
')';
}