mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 12:33:27 +02:00
0e543deee9
Druid's can now add ``wild_shapes = `` to their character file. "Light leather armor" is now just "Leather Armor".
15 lines
440 B
Python
15 lines
440 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."""
|
|
|
|
class MonsterError(AttributeError):
|
|
"""Error retriving or using a D&D Monster."""
|