The CompilerErrorExceptionconstructor initializes a new object of the CompilerErrorException class, with the error messages specified as an ordered ArrayList.

Namespace:  Microsoft.Rtc.Sip
Assembly:  ServerAgent(in ServerAgent.dll)

Syntax

Visual Basic (declaration)
Public 
Sub 
New ( _
	
errorMessages 
As 
ArrayList _
)
Visual Basic (usage)
Dim 
errorMessages 
As 
ArrayList

Dim 
instance 
As New 

CompilerErrorException(
errorMessages)
C#
public 
CompilerErrorException(
	
ArrayList 
errorMessages
)

Parameters

errorMessages
Type: System.Collections . . :: . . ArrayList

An ArrayListobject that contains the error string that is returned by the application manifest compiler. Each element in the ArrayListcontains an individual, ordered error string, from the first encountered to the last encountered.

See also