Show / Hide Table of Contents

    Class ProgramException

    Thrown when there's an internal error in SDS/2's native implementation.

    Inheritance
    object
    Exception
    ApplicationException
    ProgramException
    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 ProgramException : ApplicationException, ISerializable

    Constructors

    ProgramException(string, string)

    Thrown when there's an internal error in SDS/2's native implementation.

    Declaration
    public ProgramException(string message, string backtrace)
    Parameters
    Type Name Description
    string message
    string backtrace

    Properties

    Backtrace

    The native backtrace that led to this. This can be helpful when reporting this, so that SDS/2 programmers can see how we ran into this error.

    Declaration
    public string Backtrace { get; }
    Property Value
    Type Description
    string

    Implements

    ISerializable
    Back to top