64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
/*
|
|
* 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 ***
|
|
}
|