paxel.lintstone.api.UnregisteredRecipientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lintstone-java8 Show documentation
Show all versions of lintstone-java8 Show documentation
Lightweight Actor Framework
The newest version!
package paxel.lintstone.api;
/**
* Is thrown in case a message is sent to a actor who is not registered.
*/
public class UnregisteredRecipientException extends RuntimeException {
public UnregisteredRecipientException(String message) {
super(message);
}
}