summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/exceptions/NonSaveableConfigException.java
blob: df33bff39d623f13fce43ed7c2bd749f500a6772 (plain)
1
2
3
4
5
6
7
8
9
package com.redstoner.exceptions;

public class NonSaveableConfigException extends Exception {
    private static final long serialVersionUID = -7271481973389455510L;
    
    public NonSaveableConfigException() {
        super("This config does not support saving!");
    }
}