/******************************************************************************
    Too small 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 the the requested size of an object is 
smaller than the permitted minimum size.
*/

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

/** Exception without a message. */

  public TooSmallException() { super(); }

/** Exception with a message. */

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

}