Chili.Opf3 Send comments on this topic.
ConcurrencyException Constructor(String,Object,Object,Exception)
See Also 
Chili.Opf3.Concurrency Namespace > ConcurrencyException Class > ConcurrencyException Constructor : ConcurrencyException Constructor(String,Object,Object,Exception)




message
A message that describes the current exception.
persistent
The persistent object that caused the exception.
storagePersistent
The persistent object that has been reloaded from the storage to check for concurrency problems.
inner
The exception that caused the current exception.
Creates a new instance of the ConcurrencyException Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal message As String, _
   ByVal persistent As Object, _
   ByVal storagePersistent As Object, _
   ByVal inner As Exception _
)
Visual Basic (Usage)Copy Code
Dim message As String
Dim persistent As Object
Dim storagePersistent As Object
Dim inner As Exception
 
Dim instance As ConcurrencyException(message, persistent, storagePersistent, inner)
C# 
public ConcurrencyException( 
   string message,
   object persistent,
   object storagePersistent,
   Exception inner
)
Managed Extensions for C++ 
public: ConcurrencyException( 
   string* message,
   Object* persistent,
   Object* storagePersistent,
   Exception* inner
)
C++/CLI 
public:
ConcurrencyException( 
   String^ message,
   Object^ persistent,
   Object^ storagePersistent,
   Exception^ inner
)

Parameters

message
A message that describes the current exception.
persistent
The persistent object that caused the exception.
storagePersistent
The persistent object that has been reloaded from the storage to check for concurrency problems.
inner
The exception that caused the current exception.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also