initial commit
This commit is contained in:
55
billinglayer/python/xlsxwriter/exceptions.py
Normal file
55
billinglayer/python/xlsxwriter/exceptions.py
Normal file
@@ -0,0 +1,55 @@
|
||||
###############################################################################
|
||||
#
|
||||
# Exceptions - A class for XlsxWriter exceptions.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
# Copyright 2013-2023, John McNamara, jmcnamara@cpan.org
|
||||
#
|
||||
|
||||
|
||||
class XlsxWriterException(Exception):
|
||||
"""Base exception for XlsxWriter."""
|
||||
|
||||
|
||||
class XlsxInputError(XlsxWriterException):
|
||||
"""Base exception for all input data related errors."""
|
||||
|
||||
|
||||
class XlsxFileError(XlsxWriterException):
|
||||
"""Base exception for all file related errors."""
|
||||
|
||||
|
||||
class EmptyChartSeries(XlsxInputError):
|
||||
"""Chart must contain at least one data series."""
|
||||
|
||||
|
||||
class DuplicateTableName(XlsxInputError):
|
||||
"""Worksheet table name already exists."""
|
||||
|
||||
|
||||
class InvalidWorksheetName(XlsxInputError):
|
||||
"""Worksheet name is too long or contains restricted characters."""
|
||||
|
||||
|
||||
class DuplicateWorksheetName(XlsxInputError):
|
||||
"""Worksheet name already exists."""
|
||||
|
||||
|
||||
class OverlappingRange(XlsxInputError):
|
||||
"""Worksheet merge range or table overlaps previous range."""
|
||||
|
||||
|
||||
class UndefinedImageSize(XlsxFileError):
|
||||
"""No size data found in image file."""
|
||||
|
||||
|
||||
class UnsupportedImageFormat(XlsxFileError):
|
||||
"""Unsupported image file format."""
|
||||
|
||||
|
||||
class FileCreateError(XlsxFileError):
|
||||
"""IO error when creating xlsx file."""
|
||||
|
||||
|
||||
class FileSizeError(XlsxFileError):
|
||||
"""Filesize would require ZIP64 extensions. Use workbook.use_zip64()."""
|
||||
Reference in New Issue
Block a user