namespace Tizen.Multimedia
{
+ /// <summary>
+ /// The base exception class that is thrown when specific camera related error occurs.
+ /// </summary>
public class CameraException : Exception
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraException"/> class.
+ /// </summary>
public CameraException() : base()
{
}
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraException"/> class with a specified error message.
+ /// </summary>
public CameraException(string message) : base(message)
{
}
}
+ /// <summary>
+ /// The exception that is thrown when a camera device-related error occurs.
+ /// </summary>
public class CameraDeviceException : CameraException
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraDeviceException"/> class.
+ /// </summary>
public CameraDeviceException() : base()
{
}
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraDeviceException"/> class with a specified error message.
+ /// </summary>
public CameraDeviceException(string message) : base(message)
{
}
}
+ /// <summary>
+ /// The exception that is thrown when a camera device is not available.
+ /// </summary>
public class CameraDeviceNotFoundException : CameraException
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraDeviceNotFoundException"/> class.
+ /// </summary>
public CameraDeviceNotFoundException() : base()
{
}
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CameraDeviceNotFoundException"/> class with a specified error message.
+ /// </summary>
public CameraDeviceNotFoundException(string message) : base(message)
{
}