/******************************************************************************
Container empty exception
----------------------------------------------------
Copyright (c) Gunnar Gotshalks. All Rights Reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and
without fee is hereby granted. 
*******************************************************************************/

package FlexOr.container;

/**
The exception is thrown whenever an attempt is made to access an element from an
empty container.
*/

@SuppressWarnings("serial")
public class ContainerEmptyException extends RuntimeException {

/** Exception without a message. */

  public ContainerEmptyException() { super(); }

/** Exception with a message. */

  public ContainerEmptyException(final String s) { super(s); }

}