001    /* 
002     * $Id: CreationException.java,v 1.1.1.1 2002/06/05 21:56:32 root Exp $
003     *
004     * Developed for "Rethinking CS101", a project of Lynn Andrea Stein's AP Group.
005     * For more information, see <a href="http://www.ai.mit.edu/projects/cs101/">the
006     * CS101 homepage</a> or email <las@ai.mit.edu>.
007     *
008     * Copyright (C) 1998 Massachusetts Institute of Technology.
009     * Please do not redistribute without obtaining permission.
010     */
011    
012    package cs101.util;
013    
014    /**
015     * CreationExceptions are thrown by Coerce.StringToClass.
016     * <p>
017     * Copyright 1998 Massachusetts Institute of Technology
018     *
019     * @see  cs101.util.Coerce
020     *
021     * @author  Todd C. Parnell, tparnell@ai.mit.edu
022     * @version $Id: CreationException.java,v 1.1.1.1 2002/06/05 21:56:32 root Exp $
023     *
024     */
025    public final class CreationException extends Exception {
026    
027      public CreationException() { super(); }
028      public CreationException( String s ) { super( s ); }
029    }
030    
031    /*
032     * $Log: CreationException.java,v $
033     * Revision 1.1.1.1  2002/06/05 21:56:32  root
034     * CS101 comes to Olin finally.
035     *
036     * Revision 1.3  2000/04/25 16:47:34  nathanw
037     * Purge.
038     *
039     * Revision 1.2  1998/07/24 17:19:24  tparnell
040     * Placate new javadoc behavior
041     *
042     * Revision 1.1  1998/06/04 23:18:13  tparnell
043     * added a StringToObject method in Coerce, and a generic Main wrapper so
044     * students can avoid public static void main(String[] argv)
045     *
046     */