Source code for spss_converter.errors

[docs]class SPSSConverterError(ValueError): """Base exception raised by the **SPSS Converter** library.""" pass
[docs]class ColumnNameNotFoundError(ValueError): """Exception raised when a given column or variable name is not found.""" pass
[docs]class InvalidDataFormatError(ValueError): """Exception raised when a value did not conform to an expected type.""" pass
[docs]class InvalidLayoutError(ValueError): """Exception raised when a layout value was not recognized.""" pass