Files
DP44/Common/DTS.Common.Utilities/DataWindowAverager.WindowDoesNotExistException.cs

64 lines
1.9 KiB
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
/*
* DataWindowAverager.WindowDoesNotExistException
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
using System;
namespace DTS.Common.Utilities
{
// *** see DTS.Slice.Control.Event.cs ***
public partial class DataWindowAverager
{
/// <summary>
/// Representation of an attempt to average over a window that does not exist within
/// the specified dataset.
/// </summary>
public class WindowDoesNotExistException : ApplicationException
{ ///
/// <summary>
/// Initialize an instance of the WindowDoesNotExistException class.
/// </summary>
///
public WindowDoesNotExistException()
{
}
/// <summary>
/// Initialize an instance of the WindowDoesNotExistException class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message to be associated with this exception.
/// </param>
///
public WindowDoesNotExistException(string msg)
: base(msg)
{
}
/// <summary>
/// Initialize an instance of the WindowDoesNotExistException class.
/// </summary>
///
/// <param name="msg">
/// The <see cref="string"/> message to be associated with this exception.
/// </param>
///
/// <param name="innerEx">
/// The <see cref="System.Exception"/> responsible for this exception inception.
/// </param>
///
public WindowDoesNotExistException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
} // *** end DataWindowAverager ***
}