forked from JavaTX/JavaCompilerCore
12 lines
215 B
Java
12 lines
215 B
Java
package de.dhbwstuttgart.exceptions;
|
|
|
|
public class NotImplementedException extends RuntimeException {
|
|
|
|
public NotImplementedException() {
|
|
}
|
|
|
|
public NotImplementedException(String string) {
|
|
super(string);
|
|
}
|
|
}
|