HamBook – Diff between revs 11 and 54
?pathlinks?
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 CatCommandException : Exception |
5 | public class CatCommandException : Exception |
|
10 | { |
6 | { |
|
- | 7 | public CatCommandException() |
||
- | 8 | { |
||
Line 11... | Line 9... | |||
11 | public CatCommandException() :base() { } |
9 | } |
|
12 | |
10 | |
|
13 | public CatCommandException(string message, string command) : this() |
11 | public CatCommandException(string message, string command) : this() |
|
14 | { |
12 | { |
|
Line 23... | Line 21... | |||
23 | |
21 | |
|
24 | public override string Message { get; } |
22 | public override string Message { get; } |
|
25 | public string Command { get; } |
23 | public string Command { get; } |
|
26 | public string Method { get; } |
24 | public string Method { get; } |
|
27 | } |
25 | } |
|
28 | } |
26 | } |