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

import java.io.IOException

class NoSuchPortException(message: String) extends Exception(message)
class PortInUseException(message: String) extends Exception(message)
class AccessDeniedException(message: String) extends Exception(message)
class IllegalBaudRateException(message: String) extends Exception(message)
class PortInterruptedException(message: String) extends Exception(message)
class PortClosedException(message: String) extends Exception(message)