Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HumlaDisconnectedException.java « util « humla « lublin « se « java « main « src - gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 161d4491461e1dcfc5efd85f1802b157676b1a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package se.lublin.humla.util;

/**
 * Called when a
 * Created by andrew on 01/03/17.
 */

public class HumlaDisconnectedException extends RuntimeException {
    public HumlaDisconnectedException() {
        super("Caller attempted to use the protocol while disconnected.");
    }

    public HumlaDisconnectedException(String reason) {
        super(reason);
    }
}