djam_2/src/com/gnarly/engine/properties/ImproperFormattingException.java
2024-08-07 05:04:15 +00:00

8 lines
185 B
Java

package com.gnarly.engine.properties;
public class ImproperFormattingException extends RuntimeException {
public ImproperFormattingException(String message) {
super(message);
}
}