Show / Hide Table of Contents

    Class ProgramException

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

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

    Constructors

    ProgramException(String, String)

    Declaration
    public ProgramException(string message, string backtrace)
    Parameters
    Type Name Description
    System.String message
    System.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
    System.String

    Implements

    System.Runtime.Serialization.ISerializable
    System.Runtime.InteropServices._Exception
    Back to top