
/**
 * TriangleException extends Exception
 * 
 * @author Michael Rivers
 * @version May 25th, 2006
 */
public class TriangleException extends Exception
{
    /**
     * Default Constructor object explicitly written
     */
    public TriangleException()
    {
        super();
    }
    
    /**
     * Constructor with string parameter lets you access
     * the similar constructor in Exception
     */
    public TriangleException(String msg)
    {
        super(msg);
    }

}
