package data;

/**
  * Exception thrown to indicate some operation cannot be performed succesfully because of the isolation rules
  * associated with {@link DataBasket DataBaskets} and the container.
  *
  * @author Steffen Zschaler
  * @version 2.0 18/08/1999
  * @since v2.0
  */
public class DataBasketConflictException extends RuntimeException {

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

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