ULException constructor

Creates a ULException with the given error code.

Syntax
Visual Basic
Public Sub New( _
   ByVal code As ULSQLCode, _
   ByVal s1 As String, _
   ByVal s2 As String, _
   ByVal s3 As String _
)
C#
public  ULException(
   ULSQLCode code,
   string  s1,
   string  s2,
   string  s3
);
Parameters
  • code   The code of the exception.

  • s1   The first string for the formatted message.

  • s2   The second string for the formatted message.

  • s3   The third string for the formatted message.

Remarks

The message string corresponding to the specified iAnywhere.Data.UltraLite.ULSQLCode is retrieved from the iAnywhere.Data.UltraLite.resources assembly. Resources are searched for, by culture, using the following order: CultureInfo.CurrentUICulture, then CultureInfo.CurrentCulture, and finally culture "EN".

See also