| Index: runtime/bin/process.dart
|
| diff --git a/runtime/bin/process.dart b/runtime/bin/process.dart
|
| index 755ff4718aad2db25a2af9fe32b839da9888b493..806fe48dcfeeea25d9d1c594eb85dad95bf3283f 100644
|
| --- a/runtime/bin/process.dart
|
| +++ b/runtime/bin/process.dart
|
| @@ -52,7 +52,7 @@ class Process {
|
| /**
|
| * Returns an input stream of the process stdout.
|
| *
|
| - * Throws an [UnsupportedOperationException] if the process is
|
| + * Throws an [UnsupportedError] if the process is
|
| * non-interactive.
|
| */
|
| abstract InputStream get stdout;
|
| @@ -60,7 +60,7 @@ class Process {
|
| /**
|
| * Returns an input stream of the process stderr.
|
| *
|
| - * Throws an [UnsupportedOperationException] if the process is
|
| + * Throws an [UnsupportedError] if the process is
|
| * non-interactive.
|
| */
|
| abstract InputStream get stderr;
|
| @@ -68,7 +68,7 @@ class Process {
|
| /**
|
| * Returns an output stream to the process stdin.
|
| *
|
| - * Throws an [UnsupportedOperationException] if the process is
|
| + * Throws an [UnsupportedError] if the process is
|
| * non-interactive.
|
| */
|
| abstract OutputStream get stdin;
|
| @@ -77,7 +77,7 @@ class Process {
|
| * Sets an exit handler which gets invoked when the process
|
| * terminates.
|
| *
|
| - * Throws an [UnsupportedOperationException] if the process is
|
| + * Throws an [UnsupportedError] if the process is
|
| * non-interactive.
|
| */
|
| abstract void set onExit(void callback(int exitCode));
|
|
|