blob: 8aa1449a10616417360c167b4b285d50f2d9fa68 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.keuin.psmb4j.error;
/**
* The server made an illegal response, which conflicts to the protocol definition.
*/
public class ServerMisbehaveException extends BadProtocolException {
public ServerMisbehaveException(String message) {
super(message);
}
}
|