public static HashSet<ITypeReference> ExplicitlyThrownExceptions(ExceptionAnalyzer parent, IMethodDefinition methodDefinition) {
   var me = new MethodExceptionAnalyzer(parent);
   me.Traverse(methodDefinition);
   return me.exceptionsThrown;
 }