'Declaration
Public Function New( _ ByVal message As String, _ ByVal innerException As Exception _ )
'Usage
Dim message As String Dim innerException As Exception Dim instance As New GeneralReadException(message, innerException)
public GeneralReadException( string message, Exception innerException )
public: GeneralReadException( String^ message, Exception^ innerException )
Parameters
- message
- A string that describes the reason you are creating this exception object.
- innerException
- The original exception that caused you to create this exception object.