Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FormulaRestrictedException Class / FormulaRestrictedException Constructor
The consumer.
The index.
The error message that explains the reason for the exception.
The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.


In This Topic
    FormulaRestrictedException Constructor
    In This Topic
    Initializes a new instance of the System.ArgumentException class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal consumer As IExpressionConsumer, _
       ByVal index As Integer, _
       ByVal message As String, _
       ByVal innerException As Exception _
    )
    'Usage
     
    
    Dim consumer As IExpressionConsumer
    Dim index As Integer
    Dim message As String
    Dim innerException As Exception
     
    Dim instance As New FormulaRestrictedException(consumer, index, message, innerException)
    public FormulaRestrictedException( 
       IExpressionConsumer consumer,
       int index,
       string message,
       Exception innerException
    )

    Parameters

    consumer
    The consumer.
    index
    The index.
    message
    The error message that explains the reason for the exception.
    innerException
    The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.
    See Also