10 lines
126 B
Python
10 lines
126 B
Python
"""
|
|
Exception
|
|
+- ValueError
|
|
| +- DurationFormattingException
|
|
"""
|
|
|
|
|
|
class DurationFormattingException(ValueError):
|
|
...
|