/*
* 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
{
///
/// Representation of an attempt to average over a window that does not exist within
/// the specified dataset.
///
public class WindowDoesNotExistException : ApplicationException
{ ///
///
/// Initialize an instance of the WindowDoesNotExistException class.
///
///
public WindowDoesNotExistException()
{
}
///
/// Initialize an instance of the WindowDoesNotExistException class.
///
///
///
/// The message to be associated with this exception.
///
///
public WindowDoesNotExistException(string msg)
: base(msg)
{
}
///
/// Initialize an instance of the WindowDoesNotExistException class.
///
///
///
/// The message to be associated with this exception.
///
///
///
/// The responsible for this exception inception.
///
///
public WindowDoesNotExistException(string msg, System.Exception innerEx)
: base(msg, innerEx)
{
}
}
} // *** end DataWindowAverager ***
}