dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceException Class
Members Example

In This Topic
    SalesforceException Class
    In This Topic
    The exception that is generated when Salesforce.com or Database.com returns an error.
    Syntax
    Remarks
    This class is created whenever dotConnect for Salesforce encounters an error generated by the server, or SalesforceConnection has been closed before attempting to execute an operation on the server.
    Example
    The following sample demonstrates how to process SalesforceExceptions
    try {
            //...
          }
          catch (SalesforceException ex) {
            foreach (SalesforceError error in ex.Errors)
              Console.WriteLine(error.Message);
          }
    Try
                    '...
    Catch ex As SalesforceException
            For Each [error] As SalesforceError In ex.Errors
                    Console.WriteLine([error].Message)
            Next
    End Try
    Inheritance Hierarchy

    System.Object
       System.Exception
          System.SystemException
             System.Runtime.InteropServices.ExternalException
                System.Data.Common.DbException
                   Devart.Data.Salesforce.SalesforceException
                      Devart.Data.Salesforce.SalesforceLoaderException

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also