2

我定义了一个异常类

#####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

我究竟做错了什么?

4

1 回答 1

10

这就是为什么要保持模块名称小写的原因。:-)

from exception.UniqueConstraintException import UniqueConstraintException

您导入了模块,没有在模块内部定义的类。

于 2012-08-23T15:01:28.363 回答