HamBook – Diff between revs 39 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 39 Rev 54
Line 1... Line 1...
1 using System; 1 using System;
2 using System.Collections.Generic; -  
3 using System.Linq; -  
4 using System.Text; -  
5 using System.Threading.Tasks; -  
Line 6... Line 2...
6   2  
7 namespace HamBook 3 namespace HamBook
8 { 4 {
9 public class MemoryTuneException : Exception 5 public class MemoryTuneException : Exception
10 { -  
11 public MemoryTuneExceptionCode MemoryTuneExceptionReason { get; } 6 {
12 public MemoryTuneException(MemoryTuneExceptionCode reason, string message) : base(message) 7 public MemoryTuneException(MemoryTuneExceptionCode reason, string message) : base(message)
13 { 8 {
14 MemoryTuneExceptionReason = reason; 9 MemoryTuneExceptionReason = reason;
Line -... Line 10...
-   10 }
15 } 11  
16   12 public MemoryTuneExceptionCode MemoryTuneExceptionReason { get; }
17 } 13 }