MobileServiceODataException Constructors

Definition

Overloads

MobileServiceODataException()

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class.

MobileServiceODataException(String, Int32)

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class with an error message.

MobileServiceODataException(String, Int32, Exception)

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class with an error message and an inner exception.

MobileServiceODataException()

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class.

public MobileServiceODataException ();
Public Sub New ()

Applies to

MobileServiceODataException(String, Int32)

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class with an error message.

public MobileServiceODataException (string message, int errorPos);
new Microsoft.WindowsAzure.MobileServices.MobileServiceODataException : string * int -> Microsoft.WindowsAzure.MobileServices.MobileServiceODataException
Public Sub New (message As String, errorPos As Integer)

Parameters

message
String

The plain text error message for this exception.

errorPos
Int32

The position in string where error exists.

Applies to

MobileServiceODataException(String, Int32, Exception)

Creates a new instance of the Microsoft.WindowsAzure.MobileService.MobileServiceODataException class with an error message and an inner exception.

public MobileServiceODataException (string message, int errorPos, Exception innerException);
new Microsoft.WindowsAzure.MobileServices.MobileServiceODataException : string * int * Exception -> Microsoft.WindowsAzure.MobileServices.MobileServiceODataException
Public Sub New (message As String, errorPos As Integer, innerException As Exception)

Parameters

message
String

The plain text error message for this exception.

errorPos
Int32

The position in string where error exists.

innerException
Exception

The inner exception that is the cause of this exception to be thrown.

Applies to