aboutsummaryrefslogtreecommitdiff
path: root/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-04-18 02:34:57 -0700
committerJakob Odersky <jakob@odersky.com>2016-04-18 02:38:54 -0700
commit3a1b65b9c4f71d58b9f0e62c0052030aa38fb00d (patch)
treed6fda5890153c17ffaebbb6cc5c7d061be00d70a /flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala
parent36721ebc573e1bb5f3e3ab74ed2feb0f6bf0b6e7 (diff)
downloadakka-serial-3a1b65b9c4f71d58b9f0e62c0052030aa38fb00d.tar.gz
akka-serial-3a1b65b9c4f71d58b9f0e62c0052030aa38fb00d.tar.bz2
akka-serial-3a1b65b9c4f71d58b9f0e62c0052030aa38fb00d.zip
Implement stream interface for watchers
Diffstat (limited to 'flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala')
-rw-r--r--flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala b/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala
new file mode 100644
index 0000000..b9fa468
--- /dev/null
+++ b/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala
@@ -0,0 +1,4 @@
+package com.github.jodersky.flow
+package stream
+
+class StreamWatcherException(message: String, cause: Throwable = null) extends RuntimeException(message, cause)