Show / Hide Table of Contents

    Class NotAddedException

    This is thrown when an attempt to set an object's data without first adding it to a transaction. It's necessary to add things to transactions so they can be locked and refreshed.

    Inheritance
    object
    Exception
    ApplicationException
    NotAddedException
    Implements
    ISerializable
    Inherited Members
    Exception.GetBaseException()
    Exception.GetObjectData(SerializationInfo, StreamingContext)
    Exception.ToString()
    Exception.GetType()
    Exception.TargetSite
    Exception.Message
    Exception.Data
    Exception.InnerException
    Exception.HelpLink
    Exception.Source
    Exception.HResult
    Exception.StackTrace
    Exception.SerializeObjectState
    object.MemberwiseClone()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Exceptions
    Assembly: DesignData.SDS2.Exceptions.dll
    Syntax
    public class NotAddedException : ApplicationException, ISerializable

    Constructors

    NotAddedException(string)

    This is thrown when an attempt to set an object's data without first adding it to a transaction. It's necessary to add things to transactions so they can be locked and refreshed.

    Declaration
    public NotAddedException(string message)
    Parameters
    Type Name Description
    string message

    Implements

    ISerializable
    Back to top