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 UnmatchedRadioResponseException : Exception |
||
6 | { |
||
54 | office | 7 | public UnmatchedRadioResponseException() |
11 | office | 8 | { |
9 | } |
||
10 | |||
11 | public UnmatchedRadioResponseException(string name, string answer) : this() |
||
12 | { |
||
13 | Name = name; |
||
14 | Answer = answer; |
||
15 | } |
||
16 | |||
54 | office | 17 | public string Name { get; } |
18 | public string Answer { get; } |
||
11 | office | 19 | } |
54 | office | 20 | } |