fix NotImplemented not found

This commit is contained in:
Max Shabalihin 2013-08-12 17:26:44 +04:00
parent 54097ccacb
commit d226263174
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ cdef class PythonJavaClass(object):
'\nJava method name:', method_name,
'\nSignature: ({}){}'.format(''.join(args_signature), ret_signature),
'\n=======================================\n']))
raise NotImplemented('The method {} is not implemented'.format(key))
raise NotImplementedError('The method {} is not implemented'.format(key))
return py_method(*args)