fixed https://issues.apache.org/jira/browse/CMIS-487


git-svn-id: https://svn.apache.org/repos/asf/chemistry/phpclient/trunk@1499369 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/README-atom b/README-atom
index 3f98c68..ee31847 100644
--- a/README-atom
+++ b/README-atom
@@ -14,6 +14,9 @@
 SOURCE
  The source code for this project lives at http://incubator.apache.org/chemistry/
 
+
+The atom library has been refactored and is under atom
+
 TRYING THE LIBRARY
  To Run this example execute the following
 
diff --git a/lib/cmis_repository_wrapper.php b/lib/cmis_repository_wrapper.php
index 473a96f..c2a6d27 100644
--- a/lib/cmis_repository_wrapper.php
+++ b/lib/cmis_repository_wrapper.php
@@ -747,7 +747,7 @@
     // Repository Services
     function getRepositories()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function getRepositoryInfo()
@@ -915,7 +915,7 @@
 
     function getContentChanges()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Object Services
@@ -1176,12 +1176,12 @@
 
     function createRelationship()
     { // Not in first Release
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function createPolicy()
     { // Not in first Release
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function updateProperties($objectId, $properties = array (), $options = array ())
@@ -1249,7 +1249,7 @@
 
     function deleteTree()
     { // Nice to have
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function setContentStream($objectId, $content, $content_type, $options = array ())
@@ -1284,27 +1284,27 @@
 
     function getAllVersions()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function checkOut()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function checkIn()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function cancelCheckOut()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function deleteAllVersions()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Relationship Services
@@ -1312,44 +1312,44 @@
     {
         // get stripped down version of object (for the links) and then get the relationships?
         // Low priority -- can get all information when getting object
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Multi-Filing Services
     function addObjectToFolder()
     { // Probably
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function removeObjectFromFolder()
     { //Probably
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //Policy Services
     function getAppliedPolicies()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function applyPolicy()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function removePolicy()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     //ACL Services
     function getACL()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 
     function applyACL()
     {
-        throw Exception("Not Implemented");
+        throw new Exception("Not Implemented");
     }
 }