~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AddinLoadErrorDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
using System.IO;
31
31
using Mono.GetOptions;
32
32
using Gtk;
33
 
using Glade;
34
33
using System.Reflection;
35
34
 
36
35
using Mono.Addins;
59
58
                                store.AppendValues (it, "Full Path: " + err.AddinFile);
60
59
                                store.AppendValues (it, "Error: " + msg);
61
60
                                if (err.Exception != null) {
62
 
                                        it = store.AppendValues (it, "Exception: " + err.Exception.GetType ());
 
61
                                        it = store.AppendValues (it, "Exception: " + err.Exception.GetType () + ": " + err.Exception.Message);
63
62
                                        store.AppendValues (it, err.Exception.StackTrace.ToString ());
64
63
                                }
65
64
                                if (err.Fatal) fatal = true;