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 CatCommandException : Exception
10 {
11 public CatCommandException() :base() { }
12  
13 public CatCommandException(string message, string command) : this()
14 {
15 Message = message;
16 Command = command;
17 }
18  
19 public CatCommandException(string message, string command, string method) : this(message, command)
20 {
21 Method = method;
22 }
23  
24 public override string Message { get; }
25 public string Command { get; }
26 public string Method { get; }
27 }
28 }