Constructor UnsupportedFeatureException
UnsupportedFeatureException()
Initializes the exception.
public UnsupportedFeatureException()
UnsupportedFeatureException(string)
Initializes the exception with a message.
public UnsupportedFeatureException(string message)
Parameters
messagestringThe error message.
UnsupportedFeatureException(string, string?)
Initializes the exception with a message and a structured diagnostic code.
public UnsupportedFeatureException(string message, string? diagnosticCode)
Parameters
messagestringThe error message.
diagnosticCodestringThe structured code from DiagnosticCodes.
UnsupportedFeatureException(string, string?, Exception?)
Initializes the exception with a message, a diagnostic code and an inner exception.
public UnsupportedFeatureException(string message, string? diagnosticCode, Exception? innerException)
Parameters
messagestringThe error message.
diagnosticCodestringThe structured code from DiagnosticCodes.
innerExceptionExceptionThe underlying cause.