mirror of
https://github.com/shouptech/flask-tutorial.git
synced 2026-02-03 07:29:42 +00:00
7 lines
161 B
Python
7 lines
161 B
Python
class Error(Exception):
|
|
"""Base class for exceptions"""
|
|
pass
|
|
|
|
class ConfigError(Error):
|
|
"""Raised when a needed configuration is missing"""
|
|
pass
|