2009-05-20 16:54:42 +02:00
|
|
|
package se.scalablesolutions.akka.api;
|
|
|
|
|
|
2009-07-24 00:41:42 +02:00
|
|
|
public class InMemFailer implements java.io.Serializable {
|
2009-06-25 13:07:58 +02:00
|
|
|
public int fail() {
|
2010-06-30 16:06:09 +02:00
|
|
|
throw new RuntimeException("Expected exception; to test fault-tolerance");
|
2009-05-23 22:24:02 +02:00
|
|
|
}
|
2009-05-20 16:54:42 +02:00
|
|
|
}
|