package ilog.language.design.types;

/**
 * @version     Last modified on Mon Mar 11 09:14:43 2002 by hak
 * @author      <a href="mailto:hak@ilog.fr">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; 2000-2002 <a href="http://www.ilog.fr/">ILOG, S.A.</a>
 */

class BadCollectionTypeException extends FailedUnificationException
{
  BadCollectionTypeException (Type found)
    {
      Type.resetNames();
      _msg += "expected a collection type; found: "+found.toQuantifiedString();
    }
}
