Hush – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Runtime.Serialization;
3 using System.Windows.Forms;
4  
5 namespace Hush
6 {
7 [Serializable]
8 internal class ToolTippedException : Exception
9 {
10 public ToolTippedException()
11 {
12 }
13  
14 public ToolTippedException(string message) : base(message)
15 {
16 }
17  
18 public ToolTippedException(string message, Exception innerException) : base(message, innerException)
19 {
20 }
21  
22 public ToolTippedException(ToolTipIcon icon, string title, string body)
23 {
24 Icon = icon;
25 Title = title;
26 Body = body;
27 }
28  
29 protected ToolTippedException(SerializationInfo info, StreamingContext context) : base(info, context)
30 {
31 }
32  
33 public ToolTipIcon Icon { get; }
34 public string Title { get; }
35 public string Body { get; }
36 }
37 }