82 lines
3.0 KiB
C#
82 lines
3.0 KiB
C#
|
|
/*
|
|||
|
|
* DTS.Slice.Control.Event.Module.Channel.ReviewableAttribute.NotApplicableException.cs
|
|||
|
|
*
|
|||
|
|
* Copyright © 2009
|
|||
|
|
* Diversified Technical Systems, Inc.
|
|||
|
|
* All Rights Reserved
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace DTS.Slice.Control
|
|||
|
|
{
|
|||
|
|
// *** see DTS.Slice.Control.Event.cs ***
|
|||
|
|
public partial class Event
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
// *** see DTS.Slice.Control.Event.Module.cs ***
|
|||
|
|
public partial class Module
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
// *** see DTS.Slice.Control.Event.Module.Channel.cs ***
|
|||
|
|
public partial class Channel
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
// *** see DTS.Slice.Control.Event.Module.Channel.ReviewableAttribute.cs ***
|
|||
|
|
public partial class ReviewableAttribute
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Representation of an attempt to use a channel attribute that is not
|
|||
|
|
/// applicable to the associated channel.
|
|||
|
|
/// </summary>
|
|||
|
|
public class NotApplicableException : ApplicationException
|
|||
|
|
{ ///
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotApplicableException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
public NotApplicableException()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotApplicableException class.
|
|||
|
|
/// </summary>
|
|||
|
|
///
|
|||
|
|
/// <param name="msg">
|
|||
|
|
/// The <see cref="string"/> message to be associated with this exception.
|
|||
|
|
/// </param>
|
|||
|
|
///
|
|||
|
|
public NotApplicableException(string msg)
|
|||
|
|
: base(msg)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Initialize an instance of the NotApplicableException 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 NotApplicableException(string msg, System.Exception innerEx)
|
|||
|
|
: base(msg, innerEx)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // *** end ReviewableAttribute ***
|
|||
|
|
} // *** end Channel ***
|
|||
|
|
} // *** end Module ***
|
|||
|
|
} // *** end Event ***
|
|||
|
|
}
|