/// <summary>
 /// Adds the elements of another ThrowedExceptionDeclarationCollection to the end of this ThrowedExceptionDeclarationCollection.
 /// </summary>
 /// <param name="items">
 /// The ThrowedExceptionDeclarationCollection whose elements are to be added to the end of this ThrowedExceptionDeclarationCollection.
 /// </param>
 public void AddRange(ThrowedExceptionDeclarationCollection items)
 {
     foreach (ThrowedExceptionDeclaration item in items)
     {
         List.Add(item);
     }
 }
 /// <summary>
 /// Initializes a new instance of the ThrowedExceptionDeclarationCollection class, containing elements
 /// copied from another instance of ThrowedExceptionDeclarationCollection
 /// </summary>
 /// <param name="items">
 /// The ThrowedExceptionDeclarationCollection whose elements are to be added to the new ThrowedExceptionDeclarationCollection.
 /// </param>
 public ThrowedExceptionDeclarationCollection(ThrowedExceptionDeclarationCollection items)
 {
     AddRange(items);
 }
 public Enumerator(ThrowedExceptionDeclarationCollection collection)
 {
     wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }