// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Runtime.Serialization; namespace ICSharpCode.Core { /// /// Is thrown when the AddInTree could not find the requested path. /// [Serializable()] public class TreePathNotFoundException : CoreException { /// /// Constructs a new /// public TreePathNotFoundException(string path) : base("Treepath not found: " + path) { } /// /// Constructs a new /// public TreePathNotFoundException() : base() { } /// /// Constructs a new /// public TreePathNotFoundException(string message, Exception innerException) : base(message, innerException) { } /// /// Deserializes a /// protected TreePathNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }