Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1077)

Unified Diff: runtime/bin/process.dart

Issue 11235054: Removed IllegalAccessException and UnsupportedOperationException. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: ADded test expectations. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/unittest/test/matchers_test.dart ('k') | runtime/lib/array.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « pkg/unittest/test/matchers_test.dart ('k') | runtime/lib/array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698