Class RecordNotFoundException

Definition

Namespace:
Tizen.Content.MediaContent
Assembly:
Tizen.Content.MediaContent.dll
API Level:
4

The exception that is thrown when no record is found in the database.

C#
Copy
public class RecordNotFoundException : Exception, ISerializable
Inheritance
RecordNotFoundException
Implements

Constructors

View Source

RecordNotFoundException()

Initializes a new instance of the RecordNotFoundException class.

Declaration
C#
Copy
public RecordNotFoundException()
API Level: 4
View Source

RecordNotFoundException(String)

Initializes a new instance of the RecordNotFoundException class with a specified error message.

Declaration
C#
Copy
public RecordNotFoundException(string message)
Parameters
Type Name Description
System.String message

The message that describes the error.

API Level: 4
View Source

RecordNotFoundException(String, Exception)

Initializes a new instance of the RecordNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Declaration
C#
Copy
public RecordNotFoundException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The message that describes the error.

Exception innerException

The exception that is the cause of the current exception.

API Level: 4

Implements