/* * 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 { /// /// Representation of an attempt to use a channel attribute that is not /// applicable to the associated channel. /// public class NotApplicableException : ApplicationException { /// /// /// Initialize an instance of the NotApplicableException class. /// /// public NotApplicableException() { } /// /// Initialize an instance of the NotApplicableException class. /// /// /// /// The message to be associated with this exception. /// /// public NotApplicableException(string msg) : base(msg) { } /// /// Initialize an instance of the NotApplicableException class. /// /// /// /// The message to be associated with this exception. /// /// /// /// The responsible for this exception inception. /// /// public NotApplicableException(string msg, System.Exception innerEx) : base(msg, innerEx) { } } } // *** end ReviewableAttribute *** } // *** end Channel *** } // *** end Module *** } // *** end Event *** }