2009-05-20 16:54:42 +02:00
|
|
|
package se.scalablesolutions.akka.api;
|
|
|
|
|
|
2009-06-24 15:12:47 +02:00
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
2009-05-23 22:24:02 +02:00
|
|
|
public class InMemFailer {
|
|
|
|
|
public void fail() {
|
|
|
|
|
throw new RuntimeException("expected");
|
|
|
|
|
}
|
2009-05-20 16:54:42 +02:00
|
|
|
}
|