/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ICSharpCode.TextEditorLinux/Src/Document/HighlightingStrategy/HighlightingDefinitionInvalidException.cs
37 строк
1 KB
Mikhalkovich Stanislav
Для Linux-версии исправлен DockContent, редактор (показ всплывающего окна)
30 июн 2022, 09:47
30 июн 2022, 09:47
3072383
Код
Авторство
О чём код?
// <file> // <copyright see="prj:///doc/copyright.txt"/> // <license see="prj:///doc/license.txt"/> // <owner name="Mike Krüger" email="mike@icsharpcode.net"/> // <version>$Revision: 2533 $</version> // </file> using System; using System.Runtime.Serialization; namespace ICSharpCode.TextEditor.Document { /// <summary> /// Indicates that the highlighting definition that was tried to load was invalid. /// You get this exception only once per highlighting definition, after that the definition /// is replaced with the default highlighter. /// </summary> [Serializable()] public class HighlightingDefinitionInvalidException : Exception { public HighlightingDefinitionInvalidException() : base() { } public HighlightingDefinitionInvalidException(string message) : base(message) { } public HighlightingDefinitionInvalidException(string message, Exception innerException) : base(message, innerException) { } protected HighlightingDefinitionInvalidException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }