HamBook – Blame information for rev 39

Subversion Repositories:
Rev:
Rev Author Line No. Line
39 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
8 {
9 public class MemoryTuneException : Exception
10 {
11 public MemoryTuneExceptionCode MemoryTuneExceptionReason { get; }
12 public MemoryTuneException(MemoryTuneExceptionCode reason, string message) : base(message)
13 {
14 MemoryTuneExceptionReason = reason;
15 }
16  
17 }
18 }