1
0
Fork 0
StringMultiplication/src/de/janchristiangruenhage/exceptions/FeatureNotImplementedYetException.java

12 lines
288 B
Java
Raw Permalink Normal View History

2016-01-13 17:48:57 +00:00
package de.janchristiangruenhage.exceptions;
public class FeatureNotImplementedYetException extends RuntimeException {
public FeatureNotImplementedYetException() {
super();
}
public FeatureNotImplementedYetException(String message) {
super(message);
}
}