Introduced uniquely identifiable, loggable base exception: AkkaException and made use of it throught the project

This commit is contained in:
Jonas Bonér 2010-08-19 07:01:09 +02:00
parent e9baf2b804
commit ac0a9e84e9
22 changed files with 106 additions and 91 deletions

View file

@ -10,6 +10,7 @@ import java.util.concurrent.{ConcurrentLinkedQueue, LinkedBlockingQueue}
import se.scalablesolutions.akka.actor.{Actor, ActorRef}
import se.scalablesolutions.akka.actor.Actor._
import se.scalablesolutions.akka.dispatch.CompletableFuture
import se.scalablesolutions.akka.AkkaException
/**
* Implements Oz-style dataflow (single assignment) variables.
@ -155,7 +156,7 @@ import se.scalablesolutions.akka.dispatch.CompletableFuture
/**
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
class DataFlowVariableException(msg: String) extends RuntimeException(msg)
class DataFlowVariableException(msg: String) extends AkkaException(msg)
}