例外クラスを定義しています
#####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
私は何を間違っていますか?