~ubuntu-branches/ubuntu/gutsy/monodevelop/gutsy

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Core/MonoDevelop.Core.AddIns/AddInSignatureException.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-07-16 13:29:54 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070716132954-pzjpp1tbvotxw30v
Tags: 0.14+dfsg-1ubuntu1
* Sync with Debian, remaining changes:
  + debian/control:
    - Build depend on firefox-dev, depend on firefox.
    - Adjust Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// <file>
2
 
//     <copyright see="prj:///doc/copyright.txt"/>
3
 
//     <license see="prj:///doc/license.txt"/>
4
 
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
5
 
//     <version value="$version"/>
6
 
// </file>
7
 
 
8
 
using System;
9
 
 
10
 
namespace MonoDevelop.Core.AddIns 
11
 
{
12
 
        /// <summary>
13
 
        /// Is thrown when the xml has a false format.
14
 
        /// </summary>
15
 
        public class AddInSignatureException : Exception
16
 
        {
17
 
                /// <summary>
18
 
                /// Constructs a new <see cref="AddInTreeFormatException"/>
19
 
                /// </summary>
20
 
                public AddInSignatureException(string msg) : base("signature failure : " + msg)
21
 
                {
22
 
                }
23
 
        }
24
 
}