1
0
Fork 0
StringMultiplication/src/de/janchristiangruenhage/exceptions/FeatureNotImplementedYetException.java
Jan Christian Grünhage 76f4567346 Initial commit
2016-01-13 18:48:57 +01:00

12 lines
288 B
Java

package de.janchristiangruenhage.exceptions;
public class FeatureNotImplementedYetException extends RuntimeException {
public FeatureNotImplementedYetException() {
super();
}
public FeatureNotImplementedYetException(String message) {
super(message);
}
}