Represents an exception that is thrown when an error occurs during barcode processing.

This exception is typically used to indicate issues specific to barcode-related operations, such as invalid barcode formats or processing errors. It extends to provide additional context for barcode-related failures.

from nutrient_sdk import BarcodeException

Inherits from: NutrientException

Construction

BarcodeException()

Creates a new BarcodeException instance with default settings.

Properties

exception_reason

@property
def exception_reason(self) -> str

The reason for the exception.

Type: str

Read-only property.


Inheritors