17 lines
268 B
Python
17 lines
268 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
class BootstrapException(Exception):
|
|
"""
|
|
Any exception from this package
|
|
"""
|
|
pass
|
|
|
|
|
|
class BootstrapError(BootstrapException):
|
|
"""
|
|
Any exception that is an error
|
|
"""
|
|
pass
|