Code Coverage Statistics for Source File

c:\Tools\SD3\src\Libraries\ICSharpCode.TextEditor\Project\Src\Document\HighlightingStrategy\HighlightingDefinitionInvalidException.cs

Sequence Point Coverage
N/A
0 of 0
Branch Coverage
N/A
0 of 0
Lines
37
Highlight: Uncovered Code Covered Code
L V Source
1
// <file>
2
//     <copyright see="prj:///doc/copyright.txt"/>
3
//     <license see="prj:///doc/license.txt"/>
4
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
5
//     <version>$Revision: 2533 $</version>
6
// </file>
7
8
using System;
9
using System.Runtime.Serialization;
10
11
namespace ICSharpCode.TextEditor.Document
12
{
13
	/// <summary>
14
	/// Indicates that the highlighting definition that was tried to load was invalid.
15
	/// You get this exception only once per highlighting definition, after that the definition
16
	/// is replaced with the default highlighter.
17
	/// </summary>
18
	[Serializable()]
19
	public class HighlightingDefinitionInvalidException : Exception
20
	{
21
		public HighlightingDefinitionInvalidException() : base()
22
		{
23
		}
24
		
25
		public HighlightingDefinitionInvalidException(string message) : base(message)
26
		{
27
		}
28
		
29
		public HighlightingDefinitionInvalidException(string message, Exception innerException) : base(message, innerException)
30
		{
31
		}
32
		
33
		protected HighlightingDefinitionInvalidException(SerializationInfo info, StreamingContext context) : base(info, context)
34
		{
35
		}
36
	}
37
}