diff options
author | sr55 <[email protected]> | 2012-03-29 20:29:13 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-03-29 20:29:13 +0000 |
commit | 15c3e5ba568ed34d6a5adc629ced50010c819078 (patch) | |
tree | 143c999d557d875770d54f5ae7df1847e2eabc2d /win/CS/Program.cs | |
parent | 72997d728bb599ffff1e81c65ff4b44cc646c3f0 (diff) |
WinGui: More refactoring of user settings / exception handling for the user setting service.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4557 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Program.cs')
-rw-r--r-- | win/CS/Program.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/Program.cs b/win/CS/Program.cs index 48d2f7562..178973994 100644 --- a/win/CS/Program.cs +++ b/win/CS/Program.cs @@ -98,7 +98,9 @@ namespace Handbrake {
window.Setup(
applicationException.Error + Environment.NewLine + applicationException.Solution,
- e.ExceptionObject + "\n\n ---- \n\n" + applicationException.ActualException);
+ e.ExceptionObject + "\n\n ---- \n\n" + applicationException.ActualException +
+ Environment.NewLine + "-----" + Environment.NewLine +
+ applicationException.ActualException.InnerException);
}
}
else
|