1 package eu.simuline.util;
2
3 /**
4 * Thrown if a place in the code is reached,
5 * where implementation is not finished.
6 *
7 * @author <a href="mailto:ernst.reissner@simuline.eu">Ernst Reissner</a>
8 * @version 1.0
9 */
10 public class NotYetImplementedException extends RuntimeException {
11 private static final long serialVersionUID = -2479143000061671589L;
12 public NotYetImplementedException() {
13 // is empty.
14 }
15 }