All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cobraparser.util.NotImplementedYetException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.cobraparser.util;

/** Thrown when something hasn't been implemented yet.
 *  Based on an idea discussed in http://stackoverflow.com/questions/2329358/is-there-anything-like-nets-notimplementedexception-in-java
 *  */
public class NotImplementedYetException extends RuntimeException {

  private static final long serialVersionUID = -1809608435437763522L;

  public NotImplementedYetException() {
    super("Not Implemented Yet");
  }

  public NotImplementedYetException(final String msg) {
    super("Not Implemented Yet: " + msg);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy