mirror of
https://github.com/veops/cmdb.git
synced 2025-08-07 02:12:12 +08:00
12 lines
187 B
Python
12 lines
187 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
from werkzeug.exceptions import NotFound, Forbidden, BadRequest
|
|
|
|
|
|
class CommitException(Exception):
|
|
pass
|
|
|
|
|
|
AbortException = (NotFound, Forbidden, BadRequest)
|