HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
11 | office | 1 | using System; |
2 | |||
3 | namespace HamBook.Radios |
||
4 | { |
||
5 | public class CatCommandException : Exception |
||
6 | { |
||
54 | office | 7 | public CatCommandException() |
8 | { |
||
9 | } |
||
11 | office | 10 | |
11 | public CatCommandException(string message, string command) : this() |
||
12 | { |
||
13 | Message = message; |
||
14 | Command = command; |
||
15 | } |
||
16 | |||
17 | public CatCommandException(string message, string command, string method) : this(message, command) |
||
18 | { |
||
19 | Method = method; |
||
20 | } |
||
21 | |||
22 | public override string Message { get; } |
||
23 | public string Command { get; } |
||
24 | public string Method { get; } |
||
25 | } |
||
54 | office | 26 | } |