In MSTest, How can I verify exact error message using [ExpectedException(typeof(ApplicationException))]

Using MSTest how can I verify the exact error message coming from a test method? I know [ExpectedException(typeof(ApplicationException), error msg)] doesn't compare the error message coming from my...