remove exception debug code

This commit is contained in:
2013-12-27 21:34:53 +01:00
parent 670fecb1e0
commit 50c15ad6ce
+2 -3
View File
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
namespace PocketSharp
{
@@ -37,7 +36,7 @@ namespace PocketSharp
/// </summary>
/// <param name="message">The message that describes the error.</param>
public PocketException(string message)
: base(message) { Debug.WriteLine(message); }
: base(message) { }
/// <summary>
@@ -46,6 +45,6 @@ namespace PocketSharp
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
public PocketException(string message, Exception innerException)
: base(message, innerException) { Debug.WriteLine(message); }
: base(message, innerException) { }
}
}