Files
FSI.BT.IR.Tools/FSI.BT.Tools/SystemTrayMenu/UserInterface/ShellContextMenu/ShellContextMenuException.cs
Stephan Maier 647f938eee v1.2
2024-08-27 08:10:27 +02:00

38 lines
1.1 KiB
C#

// <copyright file="ShellContextMenuException.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace FSI.BT.Tools.SystemTrayMenu.Helper
{
using System;
using System.Runtime.Serialization;
[Serializable]
public class ShellContextMenuException : Exception
{
public ShellContextMenuException()
{
// Add any type-specific logic, and supply the default message.
}
public ShellContextMenuException(string message)
: base(message)
{
// Add any type-specific logic.
}
public ShellContextMenuException(string message, Exception innerException)
: base(message, innerException)
{
// Add any type-specific logic for inner exceptions.
}
protected ShellContextMenuException(
SerializationInfo info, StreamingContext context)
: base(info, context)
{
// Implement type-specific serialization constructor logic.
}
}
}