summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/exceptions/NonSaveableConfigException.java
blob: 926e9b2f5366e0991533f172173ee590c8cc68b2 (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!");
	}
}