aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/com/github/jodersky/flow/exceptions.scala
blob: a3600792492c71b56273daf4748773753229a62e (plain) (blame)
1
2
3
4
5
6
7
package com.github.jodersky.flow

import java.io.IOException

class NoSuchPortException(message: String) extends IOException(message)
class PortInUseException(message: String) extends IOException(message)
class AccessDeniedException(message: String) extends IOException(message)