| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 0e 00 00 01 0e 08 06 00 00 00 78 b1 f9 | .PNG........IHDR.............x.. |
| 0020 | a5 00 00 02 ff 69 43 43 50 49 43 43 20 50 72 6f 66 69 6c 65 00 00 78 9c 8d 54 cd 4f 13 41 14 7f | .....iCCPICC.Profile..x..T.O.A.. |
| 0040 | 2d cb 62 02 f1 22 22 36 c6 6c 3c 68 63 80 2c 68 14 62 44 5b 5a 9a 02 d6 a6 7c 08 c4 c4 6c b7 d3 | -.b..""6.l<hc.,h.bD[Z....|...l.. |
| 0060 | 76 65 bb 5d 67 b7 e5 23 1c 0c 17 6f 8a c6 bb f1 23 9e fc 03 88 e1 e0 8d 93 81 84 a0 31 21 9e 35 | ve.]g..#...o....#...........1!.5 |
| 0080 | 46 63 82 e1 62 b0 be d9 0f 76 51 fc 98 64 76 7e f3 de 6f 7e ef cd 9b 9d 01 a8 7f 28 e9 ba 1a 14 | Fc..b....vQ..dv~..o~.......(.... |
| 00a0 | 00 4a 9a 49 33 89 a8 30 3e 31 29 34 bc 83 20 1c 85 46 08 41 a3 24 1b 7a 24 9d 1e 02 6c 8c 0b bf | .J.I3..0>1)4.....F.A.$.z$...l... |
| 00c0 | b5 ed 37 10 60 e3 7a fb fe fe bf b6 c6 1c 31 64 80 c0 01 c4 e5 9c 21 97 10 cf 00 d4 8d c9 3a 35 | ..7.`.z.......1d......!.......:5 |
| 00e0 | 01 b8 35 b4 77 4f 9b 3a e2 7a c6 69 a6 98 20 e2 63 0c 17 6c 2c 32 9c b5 71 cc e2 8c 64 fa 10 8f | ..5.wO.:.z.i....c..l,2..q...d... |
| 0100 | 23 3e 28 17 a5 1c e2 22 e2 b6 ac cf 5e f0 61 3b 07 ab 35 27 88 46 a8 22 0b ac 16 69 5a ce 2b 2a | #>(...."....^.a;..5'.F."...iZ.+* |
| 0120 | f1 a5 fb 0f f7 7f b6 92 5a 71 e3 1d c2 de a4 9b d1 0c 8e 27 b1 7f cb d3 fe 51 1c c3 58 87 d0 5c | ........Zq.........'.....Q..X..\ |
| 0140 | 71 e4 1a e2 16 c4 51 c5 4c 8e 38 f6 71 2d 9b ba 6a f3 03 b7 a7 ca 83 19 87 f3 3c 47 62 71 b6 4f | q.....Q.L.8.q-..j.........<Gbq.O |
| 0160 | c4 cb 46 75 38 ee 72 e6 // 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 Tango.Scripting.Editors.Editing
{
/// <summary>
/// Wraps exceptions that occur during drag'n'drop.
/// Exceptions during drag'n'drop might
/// get swallowed by WPF/COM, so AvalonEdit catches them and re-throws them later
/// wrapped in a DragDropException.
/// </summary>
[Serializable()]
public class DragDropException : Exception
{
/// <summary>
/// Creates a new DragDropException.
/// </summary>
public DragDropException() : base()
{
}
/// <summary>
/// Creates a new DragDropException.
/// </summary>
public DragDropException(string message) : base(message)
{
}
/// <summary>
/// Creates a new DragDropException.
/// </summary>
public DragDropException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Deserializes a DragDropException.
/// </summary>
protected DragDropException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
|