HamBook – Blame information for rev 54

Subversion Repositories:
Rev:
Rev Author Line No. Line
39 office 1 using System;
2  
3 namespace HamBook
4 {
5 public class MemoryTuneException : Exception
6 {
7 public MemoryTuneException(MemoryTuneExceptionCode reason, string message) : base(message)
8 {
9 MemoryTuneExceptionReason = reason;
10 }
11  
54 office 12 public MemoryTuneExceptionCode MemoryTuneExceptionReason { get; }
39 office 13 }
54 office 14 }