diff --git a/src/WinSW.Core/Native/Throw.cs b/src/WinSW.Core/Native/Throw.cs index beed9d6..fa137d7 100644 --- a/src/WinSW.Core/Native/Throw.cs +++ b/src/WinSW.Core/Native/Throw.cs @@ -33,7 +33,7 @@ namespace WinSW.Native internal static void Exception(string message, Exception inner) { Debug.Assert(message.EndsWith(".")); - throw new CommandException(message, inner); + throw new CommandException(message + ' ' + inner.Message, inner); } ///