PHP Exceptions cause error
--------------------------
Key: CMIS-487
URL: https://issues.apache.org/jira/browse/CMIS-487
Project: Chemistry
Issue Type: Bug
Components: cmis-phplib
Affects Versions: PHPCMIS 0.2
Reporter: Jeremy French
Priority: Minor
If a method is called which dosn't have an implementation the code
<code>
throw Exception("Not Implemented");
</code>
is run. However this is not valid PHP as it thinks that Exceptions is a
function name rather than an object. The code should read.
<code>
throw new Exception("Not Implemented");
</code>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira