public class TestNormEx
{
    public void somethrow () throws Exception
    {
        throw new Exception ();
    }

    public void somefunc ()
    {
        for (int i = 0;i < 50000000;++i) {
            try {
                somethrow ();
            }
            catch (Exception e) {
                // Do nothing
                // since this is a pure timing test
            }
        }
    }

    public static void main (String args[])
    {
            TestNormEx  t;

        t  =   new TestNormEx ();
        t.somefunc ();
    }
}

