mirror of
https://github.com/veops/cmdb.git
synced 2025-08-09 07:49:48 +08:00
12 lines
195 B
Python
12 lines
195 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
__all__ = ['ci', 'ci_relation', 'SearchError']
|
|
|
|
|
|
class SearchError(Exception):
|
|
def __init__(self, v):
|
|
self.v = v
|
|
|
|
def __str__(self):
|
|
return self.v
|