djam_2/src/com/gnarly/engine/properties/ImproperFormattingException.java

9 lines
185 B
Java
Raw Normal View History

2024-08-07 05:04:15 +00:00
package com.gnarly.engine.properties;
public class ImproperFormattingException extends RuntimeException {
public ImproperFormattingException(String message) {
super(message);
}
}