HamBook – Blame information for rev 11
?pathlinks?
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 UnexpectedRadioResponseException : Exception |
||
10 | { |
||
11 | public string Name { get; } |
||
12 | public byte[] Buffer { get; } |
||
13 | |||
14 | public UnexpectedRadioResponseException() : base() |
||
15 | { |
||
16 | |||
17 | } |
||
18 | |||
19 | public UnexpectedRadioResponseException(string name, byte[] buffer) : this() |
||
20 | { |
||
21 | Name = name; |
||
22 | Buffer = buffer; |
||
23 | } |
||
24 | } |
||
25 | } |