HamBook – Blame information for rev 11

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