using System; namespace ChatSharp.Events { /// /// Raised when a Error occurs. /// public class ErrorEventArgs : EventArgs { /// /// The error that has occured. /// public Exception Error { get; set; } internal ErrorEventArgs(Exception error) { Error = error; } } }