Index: runtime/vm/exceptions.cc |
diff --git a/runtime/vm/exceptions.cc b/runtime/vm/exceptions.cc |
index 479ad64437e836f83aa2a82f8492a484359eebfb..c40c99d4571940796ec9c2ce2eadd9005eb18b0f 100644 |
--- a/runtime/vm/exceptions.cc |
+++ b/runtime/vm/exceptions.cc |
@@ -439,6 +439,10 @@ RawObject* Exceptions::Create( |
library = Library::IsolateLibrary(); |
class_name = Symbols::New("IsolateSpawnException"); |
break; |
+ case kIsolateUnhandledException: |
+ library = Library::IsolateLibrary(); |
+ class_name = Symbols::New("IsolateUnhandledException"); |
+ break; |
} |
return DartLibraryCalls::ExceptionCreate(library, class_name, arguments); |