/******************************************************************************
Container full 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 insert an element into
fixed size container that is full.
*/

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

/** Exception without a message. */

  public ContainerFullException() { super(); }

/** Exception with a message. */

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

}