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

Unified Diff: lib/src/exception.dart

Issue 1734773002: Copy the web socket stuff from http_parser. (Closed) Base URL: git@github.com:dart-lang/web_socket_channel.git@master
Patch Set: Created 4 years, 10 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 | « lib/src/copy/web_socket_impl.dart ('k') | lib/web_socket_channel.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/exception.dart
diff --git a/lib/src/exception.dart b/lib/src/exception.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d06dc60e9db21eda7179cdcfeb77ff991b450890
--- /dev/null
+++ b/lib/src/exception.dart
@@ -0,0 +1,19 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'channel.dart';
+
+/// An exception thrown by a [WebSocketChannel].
+class WebSocketChannelException implements Exception {
+ final String message;
+
+ /// The exception that caused this one, if available.
+ final inner;
+
+ WebSocketChannelException([this.message, this.inner]);
+
+ String toString() => message == null
+ ? "WebSocketChannelException" :
+ "WebSocketChannelException: $message";
+}
« no previous file with comments | « lib/src/copy/web_socket_impl.dart ('k') | lib/web_socket_channel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698