blob: a7cf658528edf216ecc00bf07c77317881f5e7cc (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 ff 00 00 02 5e 08 06 00 00 00 ba 59 0c | .PNG........IHDR.......^......Y. |
| 0020 | 68 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 00 09 70 48 59 73 00 00 2e 22 00 00 2e | h....gAMA......a.....pHYs..."... |
| 0040 | 22 01 aa e2 dd 92 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 70 61 69 6e 74 2e 6e 65 74 | ".........tEXtSoftware.paint.net |
| 0060 | 20 34 2e 30 2e 31 37 33 6e 9f 63 00 00 b1 af 49 44 41 54 78 5e ed bd 79 c0 2d 55 79 e6 9b 08 de | .4.0.173n.c....IDATx^..y.-Uy.... |
| 0080 | 44 66 95 4e 72 e8 0c 7d af 26 ad 49 df 16 6d cc ed e4 e2 41 24 49 df 8e 38 64 e8 ee dc 20 09 78 | Df.Nr..}.&.I..m....A$I..8d.....x |
| 00a0 | bb 83 ca 18 24 83 89 80 63 4b 3a 1a 0c 0e c0 21 28 f3 a0 08 1c 64 16 88 03 22 b3// 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
{
/// <summary>
/// A VisualLinesInvalidException indicates that you accessed the <see cref="TextView.VisualLines"/> property
/// of the <see cref="TextView"/> while the visual lines were invalid.
/// </summary>
[Serializable]
public class VisualLinesInvalidException : Exception
{
/// <summary>
/// Creates a new VisualLinesInvalidException instance.
/// </summary>
public VisualLinesInvalidException() : base()
{
}
/// <summary>
/// Creates a new VisualLinesInvalidException instance.
/// </summary>
public VisualLinesInvalidException(string message) : base(message)
{
}
/// <summary>
/// Creates a new VisualLinesInvalidException instance.
/// </summary>
public VisualLinesInvalidException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Creates a new VisualLinesInvalidException instance.
/// </summary>
protected VisualLinesInvalidException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
|