ODataUnrecognizedPathException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ODataUnrecognizedPathException() |
Initializes a new instance of the ODataUnrecognizedPathException class. |
ODataUnrecognizedPathException(String) |
Initializes a new instance of the ODataUnrecognizedPathException class. |
ODataUnrecognizedPathException(String, Exception) |
Initializes a new instance of the DataServiceException class. |
ODataUnrecognizedPathException()
Initializes a new instance of the ODataUnrecognizedPathException class.
public ODataUnrecognizedPathException ();
Public Sub New ()
Remarks
The Message property is initialized to a system-supplied message that describes the error. This message takes into account the current system culture.
Applies to
ODataUnrecognizedPathException(String)
Initializes a new instance of the ODataUnrecognizedPathException class.
public ODataUnrecognizedPathException (string message);
new Microsoft.OData.UriParser.ODataUnrecognizedPathException : string -> Microsoft.OData.UriParser.ODataUnrecognizedPathException
Public Sub New (message As String)
Parameters
- message
- String
Plain text error message for this exception.
Applies to
ODataUnrecognizedPathException(String, Exception)
Initializes a new instance of the DataServiceException class.
public ODataUnrecognizedPathException (string message, Exception innerException);
new Microsoft.OData.UriParser.ODataUnrecognizedPathException : string * Exception -> Microsoft.OData.UriParser.ODataUnrecognizedPathException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
Plain text error message for this exception.
- innerException
- Exception
Exception that caused this exception to be thrown.