CameraUnavailableException

@RequiresApi(value = 21)
class CameraUnavailableException : Exception


CameraUnavailableException is thrown when a camera device could not be queried or opened or if the connection to an opened camera device is no longer valid.

Summary

Constants

const Int

The camera is disabled due to a device policy, and cannot be opened.

const Int

The camera device is removable and has been disconnected from the Android device, or the camera service has shut down the connection due to a higher-priority access request for the camera device.

const Int

The camera device is currently in the error state.

const Int

The camera device is in use already.

const Int

The system-wide limit for number of open cameras or camera resources has been reached, and more camera devices cannot be opened.

const Int

The camera is unavailable due to NotificationManager.Policy.

const Int

Some other error occurred.

Public constructors

CameraUnavailableException(reason: Int, message: String?)
CameraUnavailableException(reason: Int, message: String?, cause: Throwable?)

Public functions

Int

The reason the camera is unavailable.

Constants

CAMERA_DISABLED

Added in 1.0.0
const val CAMERA_DISABLED = 1: Int

The camera is disabled due to a device policy, and cannot be opened.

CAMERA_DISCONNECTED

Added in 1.0.0
const val CAMERA_DISCONNECTED = 2: Int

The camera device is removable and has been disconnected from the Android device, or the camera service has shut down the connection due to a higher-priority access request for the camera device.

CAMERA_ERROR

Added in 1.0.0
const val CAMERA_ERROR = 3: Int

The camera device is currently in the error state.

The camera has failed to open or has failed at a later time as a result of some non-user interaction.

CAMERA_IN_USE

Added in 1.0.0
const val CAMERA_IN_USE = 4: Int

The camera device is in use already.

CAMERA_MAX_IN_USE

Added in 1.0.0
const val CAMERA_MAX_IN_USE = 5: Int

The system-wide limit for number of open cameras or camera resources has been reached, and more camera devices cannot be opened.

CAMERA_UNAVAILABLE_DO_NOT_DISTURB

Added in 1.0.0
const val CAMERA_UNAVAILABLE_DO_NOT_DISTURB = 6: Int

The camera is unavailable due to NotificationManager.Policy. Some API 28 devices cannot access the camera when the device is in "Do Not Disturb" mode. The camera will not be accessible until "Do Not Disturb" mode is disabled.

CAMERA_UNKNOWN_ERROR

Added in 1.0.0
const val CAMERA_UNKNOWN_ERROR = 0: Int

Some other error occurred.

Public constructors

CameraUnavailableException

Added in 1.0.0
CameraUnavailableException(reason: Int)

CameraUnavailableException

Added in 1.0.0
CameraUnavailableException(reason: Int, cause: Throwable?)

CameraUnavailableException

Added in 1.0.0
CameraUnavailableException(reason: Int, message: String?)

CameraUnavailableException

Added in 1.0.0
CameraUnavailableException(reason: Int, message: String?, cause: Throwable?)

Public functions

getReason

Added in 1.0.0
fun getReason(): Int

The reason the camera is unavailable.