diff --git a/PocketSharp/Utilities/PocketException.cs b/PocketSharp/Utilities/PocketException.cs index 24422a3..c87bf0d 100644 --- a/PocketSharp/Utilities/PocketException.cs +++ b/PocketSharp/Utilities/PocketException.cs @@ -1,5 +1,4 @@ using System; -using System.Diagnostics; namespace PocketSharp { @@ -37,7 +36,7 @@ namespace PocketSharp /// /// The message that describes the error. public PocketException(string message) - : base(message) { Debug.WriteLine(message); } + : base(message) { } /// @@ -46,6 +45,6 @@ namespace PocketSharp /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. public PocketException(string message, Exception innerException) - : base(message, innerException) { Debug.WriteLine(message); } + : base(message, innerException) { } } }