CodeTypeNotSupportedException

class CodeTypeNotSupportedException(val codeType: CodeType, message: String = "Code type ") : Exception

Exception thrown when a specific CodeType is not supported by the device's camera scanner.

This exception indicates that the requested barcode type format cannot be detected or processed by the underlying hardware or scanning library on the current device.

Parameters

message

The detail message for this exception. Defaults to a standard error message including the code type.

Constructors

Link copied to clipboard
constructor(codeType: CodeType, message: String = "Code type ")

Properties

Link copied to clipboard
expect open val cause: Throwable?
Link copied to clipboard

The specific code type format that caused the exception.

Link copied to clipboard
expect open val message: String?