summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/psmb4j/error/BadProtocolException.java
blob: 893b8c308c54df6aba14ad018b62ead584be11c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.keuin.psmb4j.error;

/**
 * The server speaks a bad protocol which is not compatible to the client.
 */
public class BadProtocolException extends RuntimeException {
    public BadProtocolException() {
    }

    public BadProtocolException(String message) {
        super(message);
    }
}