// 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.AvalonEdit.Rendering { /// /// A VisualLinesInvalidException indicates that you accessed the property /// of the while the visual lines were invalid. /// [Serializable] public class VisualLinesInvalidException : Exception { /// /// Creates a new VisualLinesInvalidException instance. /// public VisualLinesInvalidException() : base() { } /// /// Creates a new VisualLinesInvalidException instance. /// public VisualLinesInvalidException(string message) : base(message) { } /// /// Creates a new VisualLinesInvalidException instance. /// public VisualLinesInvalidException(string message, Exception innerException) : base(message, innerException) { } /// /// Creates a new VisualLinesInvalidException instance. /// protected VisualLinesInvalidException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }