Gets a string containing a message that describes the current Exception.
A string that contains a detailed description of the error, or string.Empty. This value is intended to be understood by humans.
The text of Exception.Message should completely describe the error and should, when possible, explain how to correct it.
The value of the Exception.Message property is included in the information returned by Exception.ToString .
This property is read-only.
The Exception.Message property is set only when creating an Exception instance.
If no message was supplied to the constructor for the current instance, the system supplies a default message that is formatted using the current system culture.
The Exception.Message property is overridden in classes that require control over message content or format.
Application code typically accesses this property when there is a need to display information about an exception that has been caught.