Introduced uniquely identifiable, loggable base exception: AkkaException and made use of it throught the project
This commit is contained in:
parent
e9baf2b804
commit
ac0a9e84e9
22 changed files with 106 additions and 91 deletions
|
|
@ -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ér</a>
|
||||
*/
|
||||
class DataFlowVariableException(msg: String) extends RuntimeException(msg)
|
||||
class DataFlowVariableException(msg: String) extends AkkaException(msg)
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue