9 lines
185 B
Java
9 lines
185 B
Java
|
package com.gnarly.engine.properties;
|
||
|
|
||
|
public class ImproperFormattingException extends RuntimeException {
|
||
|
|
||
|
public ImproperFormattingException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|