| Index: runtime/vm/exceptions.cc
|
| diff --git a/runtime/vm/exceptions.cc b/runtime/vm/exceptions.cc
|
| index 087010f60de4766fee53e2fc98ba8a63b8efcb0e..a792463d6e0580d6fd447ad3c75a1cdb137c18d2 100644
|
| --- a/runtime/vm/exceptions.cc
|
| +++ b/runtime/vm/exceptions.cc
|
| @@ -670,6 +670,10 @@ RawObject* Exceptions::Create(ExceptionType type, const Array& arguments) {
|
| library = Library::CoreLibrary();
|
| class_name = &Symbols::NullThrownError();
|
| break;
|
| + case kIsolateMessage:
|
| + library = Library::IsolateLibrary();
|
| + class_name = &Symbols::IsolateMessageException();
|
| + break;
|
| case kIsolateSpawn:
|
| library = Library::IsolateLibrary();
|
| class_name = &Symbols::IsolateSpawnException();
|
|
|