blob: 60cec0900718b8fefe8aeefd851c5175981a2c25 [file] [log] [blame] [view]
# handleException function
void handleException
(String name, dynamic exception, void close())
<p>Calls close and prints the exception.</p>
## Implementation
```dart
void handleException(String name, dynamic exception, void Function() close) {
close();
print('Exception handling method call $name: $exception');
}
```