exceptions.py 126 B

123456789
  1. """
  2. Exception
  3. +- ValueError
  4. | +- DurationFormattingException
  5. """
  6. class DurationFormattingException(ValueError):
  7. ...