HamBook – Diff between revs 11 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 54
Line 1... Line 1...
1 using System; 1 using System;
2 using System.Collections.Generic; -  
3 using System.Linq; -  
4 using System.Text; -  
5 using System.Threading.Tasks; -  
Line 6... Line 2...
6   2  
7 namespace HamBook.Radios 3 namespace HamBook.Radios
8 { 4 {
9 public class UnmatchedRadioResponseException : Exception 5 public class UnmatchedRadioResponseException : Exception
10 { -  
11 public string Name { get; } -  
12 public string Answer { get; } -  
13   6 {
14 public UnmatchedRadioResponseException() :base() 7 public UnmatchedRadioResponseException()
15 { -  
16 8 {
Line 17... Line 9...
17 } 9 }
18   10  
19 public UnmatchedRadioResponseException(string name, string answer) : this() 11 public UnmatchedRadioResponseException(string name, string answer) : this()
20 { 12 {
21 Name = name; 13 Name = name;
Line 22... Line -...
22 Answer = answer; -  
-   14 Answer = answer;
-   15 }
23 } 16  
24   17 public string Name { get; }
25 18 public string Answer { get; }