HamBook – Rev 11
?pathlinks?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HamBook.Radios
{
public class CatCommandException : Exception
{
public CatCommandException() :base() { }
public CatCommandException(string message, string command) : this()
{
Message = message;
Command = command;
}
public CatCommandException(string message, string command, string method) : this(message, command)
{
Method = method;
}
public override string Message { get; }
public string Command { get; }
public string Method { get; }
}
}