using System; namespace NaGet.Tasks { [Serializable()] public class TaskCanceledException : Exception { public TaskCanceledException(string msg) : base(msg) { } public TaskCanceledException(string msg, Exception e) : base(msg, e) { } } }