aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/com/github/jodersky/flow/exceptions.scala
blob: ab9392fb97b25a0626461439f93746d85463ed19 (plain) (blame)
1
2
3
4
5
6
7
8
9
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)
class IllegalBaudRateException(message: String) extends IOException(message)
class PortClosingException(message: String) extends IOException(message)