// // // // // $Revision: 2318 $ // 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) { } } }