HamBook – Rev 54

Subversion Repositories:
Rev:
using System;

namespace HamBook.Radios
{
    public class CatCommandException : Exception
    {
        public CatCommandException()
        {
        }

        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; }
    }
}

Generated by GNU Enscript 1.6.5.90.