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