我定义了一个异常类
#####UNIQUE CONSTRAINT EXCEPTION#########################################################3
class UniqueConstraintException (Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr('Failed unique property. Property name: ' + self.value)
文件名为:“UniqueConstraintException.py”,包名:“exception”
我正在以这种方式导入和使用它:
from exception import UniqueConstraintException
raise UniqueConstraintException(prop_key)
并得到这个错误:
TypeError: 'module' object is not callable
我究竟做错了什么?