7 lines
164 B
Python
7 lines
164 B
Python
|
class CSSError(Exception):
|
||
|
"""raised when there's a problem with the CSS"""
|
||
|
|
||
|
class HTMLError(Exception):
|
||
|
"""raised when there's a problem with the HTML"""
|
||
|
|