InfoConnect API Guide
Attachmate.Reflection Namespace / SecuredSettingException Class / SecuredSettingException Constructor / SecuredSettingException Constructor(String,Exception)
A message that describes the error.
The exception that causes 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
    SecuredSettingException Constructor(String,Exception)
    In This Topic
    Initializes a new instance of the Attachmate.Reflection.SecuredSettingException class with a specified error message and a reference to the inner exception that causes this exception.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal message As String, _
       ByVal inner As Exception _
    )
    'Usage
     
    
    Dim message As String
    Dim inner As Exception
     
    Dim instance As New SecuredSettingException(message, inner)
    public SecuredSettingException( 
       string message,
       Exception inner
    )

    Parameters

    message
    A message that describes the error.
    inner
    The exception that causes 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