Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULException class

ULException members Next Page

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
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