cocaine.UnexpectedServiceMessageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cocaine-client Show documentation
Show all versions of cocaine-client Show documentation
Client for Cocaine Application Engine.
The newest version!
package cocaine;
import cocaine.message.Message;
/**
* @author Anton Bobukh
*/
public class UnexpectedServiceMessageException extends ServiceException {
private final Message msg;
public UnexpectedServiceMessageException(String service, Message msg) {
super(service, "Unexpected message: " + msg.toString());
this.msg = msg;
}
public Message getMsg() {
return msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy