All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.stream.StreamTcpException.scala Maven / Gradle / Ivy

There is a newer version: 2.2.6.3
Show newest version
/**
 * Copyright (C) 2014-2017 Lightbend Inc. 
 */
package akka.stream

import scala.util.control.NoStackTrace

class StreamTcpException(msg: String) extends RuntimeException(msg) with NoStackTrace

class BindFailedException extends StreamTcpException("bind failed")

@deprecated("BindFailedException object will never be thrown. Match on the class instead.")
case object BindFailedException extends BindFailedException

class ConnectionException(msg: String) extends StreamTcpException(msg)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy