JavaTXCompilerInJavaTX/javatx-src/main/java/de/dhbwstuttgart/exceptions/NotImplementedException.java

12 lines
215 B
Java
Raw Normal View History

2024-02-02 12:06:37 +00:00
package de.dhbwstuttgart.exceptions;
public class NotImplementedException extends RuntimeException {
public NotImplementedException() {
}
public NotImplementedException(String string) {
super(string);
}
}