| Index: runtime/bin/dartutils.cc
|
| diff --git a/runtime/bin/dartutils.cc b/runtime/bin/dartutils.cc
|
| index fc9046942654246cd33e0bd4816867ac5d229c4c..375c6d5963fae93b8fc5bfb33f4413a742c9de74 100644
|
| --- a/runtime/bin/dartutils.cc
|
| +++ b/runtime/bin/dartutils.cc
|
| @@ -760,10 +760,10 @@ Dart_Handle DartUtils::NewDartOSError(OSError* os_error) {
|
| }
|
|
|
|
|
| -Dart_Handle DartUtils::NewDartSocketIOException(const char* message,
|
| - Dart_Handle os_error) {
|
| - // Create a dart:io SocketIOException object.
|
| - Dart_Handle clazz = GetDartClass(kIOLibURL, "SocketIOException");
|
| +Dart_Handle DartUtils::NewDartSocketException(const char* message,
|
| + Dart_Handle os_error) {
|
| + // Create a dart:io SocketException object.
|
| + Dart_Handle clazz = GetDartClass(kIOLibURL, "SocketException");
|
| Dart_Handle args[2];
|
| args[0] = NewString(message);
|
| args[1] = os_error;
|
|
|