I need to clear this warning :
try { doSomething() } catch (AmbiguousMatchException MyException) { doSomethingElse() }
The complier
You could write the exception out to a log if you've got one running. Might be useful for tracking down any problems.
Log.Write("AmbiguousMatchException: {0}", MyException.Message);