package data;

/**
  * Exception thrown when an attempt is made to edit an item that was not retrieved for editing.
  *
  * @author Steffen Zschaler
  * @version 2.0 18/08/1999
  * @since v2.0
  */
public class NotEditableException extends RuntimeException {

  /**
    * Create a new NotEditableException.
    */
  public NotEditableException() {
    super();
  }

  /**
    * Create a new NotEditableException with a detail message.
    *
    * @param sDetail the detail message.
    */
  public NotEditableException(String sDetail) {
    super (sDetail);
  }
}