package algorithmrepository.exceptions;

/**
 * 
 * There is no standard NotImplementedException in Java, so for the few cases
 * where this (temporary) exception is needed, this class can be used (temporarily!).
 *
 */
public class NotImplementedException extends RuntimeException {

    private static final long serialVersionUID = 9201564948369902303L;

        public NotImplementedException() { }
}
