Author: fmui
Date: Wed Feb  6 09:40:07 2013
New Revision: 1442877

URL: http://svn.apache.org/viewvc?rev=1442877&view=rev
Log:
exception names must not be overridden - they are defined by the CMIS spec

Modified:
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
    
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisConnectionException ext
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisConstraintException ext
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisContentAlreadyExistsExc
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisFilterNotValidException
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisInvalidArgumentExceptio
     public CmisInvalidArgumentException(String message, BigInteger code, 
String errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisInvalidArgumentException(String message, String errorContent, 
Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisInvalidArgumentExceptio
     public CmisInvalidArgumentException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisNameConstraintViolation
     public CmisNameConstraintViolationException(String message, BigInteger 
code, String errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisNameConstraintViolationException(String message, String 
errorContent, Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisNameConstraintViolation
     public CmisNameConstraintViolationException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisNotSupportedException e
     public CmisNotSupportedException(String message, BigInteger code, String 
errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisNotSupportedException(String message, String errorContent, 
Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisNotSupportedException e
     public CmisNotSupportedException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisObjectNotFoundException
     public CmisObjectNotFoundException(String message, BigInteger code, String 
errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisObjectNotFoundException(String message, String errorContent, 
Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisObjectNotFoundException
     public CmisObjectNotFoundException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisPermissionDeniedExcepti
     public CmisPermissionDeniedException(String message, BigInteger code, 
String errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisPermissionDeniedException(String message, String errorContent, 
Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisPermissionDeniedExcepti
     public CmisPermissionDeniedException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisRuntimeException extend
     public CmisRuntimeException(String message, BigInteger code, String 
errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisRuntimeException(String message, String errorContent, Throwable 
cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisRuntimeException extend
     public CmisRuntimeException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisStorageException extend
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
 Wed Feb  6 09:40:07 2013
@@ -47,7 +47,7 @@ public class CmisStreamNotSupportedExcep
     public CmisStreamNotSupportedException(String message, BigInteger code, 
String errorContent) {
         super(message, code, errorContent);
     }
-    
+
     public CmisStreamNotSupportedException(String message, String 
errorContent, Throwable cause) {
         super(message, errorContent, cause);
     }
@@ -59,9 +59,9 @@ public class CmisStreamNotSupportedExcep
     public CmisStreamNotSupportedException(String message) {
         super(message, BigInteger.ZERO);
     }
-    
+
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisUpdateConflictException
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }

Modified: 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
URL: 
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java?rev=1442877&r1=1442876&r2=1442877&view=diff
==============================================================================
--- 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
 (original)
+++ 
chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
 Wed Feb  6 09:40:07 2013
@@ -61,7 +61,7 @@ public class CmisVersioningException ext
     }
 
     @Override
-    public String getExceptionName() {
+    public final String getExceptionName() {
         return EXCEPTION_NAME;
     }
 }


Reply via email to