blob: 0ac6f0700200a6b8eb33b0b5f3d611e7ff4ac28d (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.keuin.psmb4j.error;
/**
* The previous command was rejected by the server for certain reasons.
*/
public class CommandFailureException extends ProtocolFailureException {
public CommandFailureException(String message) {
super(message);
}
}
|