aboutsummaryrefslogtreecommitdiff
path: root/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamSerialException.scala
blob: fad92fcbeaa795327e826fd8cab2403181030734 (plain) (blame)
1
2
3
4
5
package com.github.jodersky.flow
package stream

/** Represents a generic exception occured during streaming of serial data. */
class StreamSerialException(message: String, cause: Throwable = null) extends RuntimeException(message, cause)