Files
dungeon-sheets/dungeonsheets/exceptions.py
T

12 lines
353 B
Python

class CharacterFileFormatError(ValueError):
"""The given file is not a valid Dungeons and Dragons file."""
class DiceError(ValueError):
"""Improper formatting for a dice string."""
class LatexError(OSError):
"""PDFLatex did not execute correctly."""
class LatexNotFoundError(LatexError):
"""PDFLatex did not execute correctly."""