dotConnect for Adobe Commerce Documentation
Devart.Data.Magento Namespace / MagentoException Class
Members Example

In This Topic
    MagentoException Class
    In This Topic
    The exception that is generated when Adobe Commerce returns an error.
    Syntax
    Remarks
    This class is created whenever dotConnect for Adobe Commerce encounters an error generated by the server, or MagentoConnection has been closed before attempting to execute an operation on the server.
    Example
    The following example generates a MagentoException due to a non-existing table, and then displays the exception.
    public void ThrowMagentoException()
    {
      string mySelectQuery = "SELECT * FROM NONEXISTINGTABLE";
      MagentoConnection adobe commerceConnection =
        new MagentoConnection(
            "domain=192.168.10.68/magento;user=Test;apikey=testpassword;");
      MagentoCommand adobe commerceCommand = new MagentoCommand(mySelectQuery,adobe commerceConnection);
      try
      {
        adobe commerceCommand.Connection.Open();
      }
      catch (MagentoException myException)
      {
        MessageBox.Show("Message: " + myException.Message + "\n");
      }
    }
    Public Sub ThrowMagentoException()
      Dim mySelectQuery As String = "SELECT * FROM NONEXISTINGTABLE"
      Dim adobe commerceConnection As New MagentoConnection( _
        "domain=192.168.10.68/magento;user=Test;apikey=testpassword;")
      Dim adobe commerceCommand As New MagentoCommand(mySelectQuery, adobe commerceConnection)
      Try
        adobe commerceCommand.Connection.Open()
      Catch myException As MagentoException
        MessageBox.Show("Message: " + myException.Message + ControlChars.Cr)
      End Try
    End Sub
    Inheritance Hierarchy

    System.Object
       System.Exception
          System.SystemException
             System.Runtime.InteropServices.ExternalException
                System.Data.Common.DbException
                   Devart.Data.Magento.MagentoException

    See Also