using System; using System.Collections.Generic; namespace XGame.Framework.Asyncs { public class AsyncGroupException : Exception { public List elementExceptions = new List(); public void AddException(Exception exception) { elementExceptions.Add(exception); } public void RemoveException(Exception exception) { elementExceptions.Remove(exception); } } }