Code Coverage Statistics for Source File

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

Sequence Point Coverage
N/A
0 of 0
Branch Coverage
N/A
0 of 0
Lines
32
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: 1624 $</version>
6
// </file>
7
8
using System;
9
using System.Runtime.Serialization;
10
11
namespace ICSharpCode.TextEditor.Document
12
{
13
	[Serializable()]
14
	public class HighlightingColorNotFoundException : Exception
15
	{
16
		public HighlightingColorNotFoundException() : base()
17
		{
18
		}
19
		
20
		public HighlightingColorNotFoundException(string message) : base(message)
21
		{
22
		}
23
		
24
		public HighlightingColorNotFoundException(string message, Exception innerException) : base(message, innerException)
25
		{
26
		}
27
		
28
		protected HighlightingColorNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
29
		{
30
		}
31
	}
32
}