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

akka.config.ConfigurationException.scala Maven / Gradle / Ivy

There is a newer version: 2.0.5-protobuf-2.5-java-1.5
Show newest version
/**
 * Copyright (C) 2009-2012 Typesafe Inc. 
 */

package akka.config

import akka.AkkaException

@deprecated("Will be moved to akka.ConfigurationException in Akka 2.1", "2.0.2")
class ConfigurationException(message: String, cause: Throwable = null) extends AkkaException(message, cause) {
  def this(msg: String) = this(msg, null);
}

@deprecated("Will be removed in Akka 2.1, no replacement", "2.0.2")
class ModuleNotAvailableException(message: String, cause: Throwable = null) extends AkkaException(message, cause) {
  def this(msg: String) = this(msg, null);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy