Modified: 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Updatability.java
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Updatability.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Updatability.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/Updatability.java
 Fri Apr 16 14:11:19 2010
@@ -26,25 +26,24 @@ package org.apache.chemistry.opencmis.co
  */
 public enum Updatability {
 
-  READONLY("readonly"), READWRITE("readwrite"), 
WHENCHECKEDOUT("whencheckedout"), ONCREATE(
-      "oncreate");
-  private final String value;
+       READONLY("readonly"), READWRITE("readwrite"), 
WHENCHECKEDOUT("whencheckedout"), ONCREATE("oncreate");
+       private final String value;
 
-  Updatability(String v) {
-    value = v;
-  }
+       Updatability(String v) {
+               value = v;
+       }
 
-  public String value() {
-    return value;
-  }
+       public String value() {
+               return value;
+       }
 
-  public static Updatability fromValue(String v) {
-    for (Updatability c : Updatability.values()) {
-      if (c.value.equals(v)) {
-        return c;
-      }
-    }
-    throw new IllegalArgumentException(v);
-  }
+       public static Updatability fromValue(String v) {
+               for (Updatability c : Updatability.values()) {
+                       if (c.value.equals(v)) {
+                               return c;
+                       }
+               }
+               throw new IllegalArgumentException(v);
+       }
 
 }

Modified: 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/VersioningState.java
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/VersioningState.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/VersioningState.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/enums/VersioningState.java
 Fri Apr 16 14:11:19 2010
@@ -26,24 +26,24 @@ package org.apache.chemistry.opencmis.co
  */
 public enum VersioningState {
 
-  NONE("none"), MAJOR("major"), MINOR("minor"), CHECKEDOUT("checkedout");
-  private final String value;
+       NONE("none"), MAJOR("major"), MINOR("minor"), CHECKEDOUT("checkedout");
+       private final String value;
 
-  VersioningState(String v) {
-    value = v;
-  }
+       VersioningState(String v) {
+               value = v;
+       }
 
-  public String value() {
-    return value;
-  }
+       public String value() {
+               return value;
+       }
 
-  public static VersioningState fromValue(String v) {
-    for (VersioningState c : VersioningState.values()) {
-      if (c.value.equals(v)) {
-        return c;
-      }
-    }
-    throw new IllegalArgumentException(v);
-  }
+       public static VersioningState fromValue(String v) {
+               for (VersioningState c : VersioningState.values()) {
+                       if (c.value.equals(v)) {
+                               return c;
+                       }
+               }
+               throw new IllegalArgumentException(v);
+       }
 
 }

Modified: 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisBaseException.java
URL: 
http://svn.apache.org/viewvc/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisBaseException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisBaseException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisBaseException.java
 Fri Apr 16 14:11:19 2010
@@ -28,116 +28,118 @@ import java.math.BigInteger;
  */
 public abstract class CmisBaseException extends RuntimeException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  /** Error code used by the Web Services binding. */
-  private BigInteger fCode;
+       /** Error code used by the Web Services binding. */
+       private BigInteger fCode;
 
-  /** Content the of the error page returned by the AtomPub server. */
-  private String fErrorContent;
+       /** Content the of the error page returned by the AtomPub server. */
+       private String fErrorContent;
 
-  /**
-   * Default constructor.
-   */
-  public CmisBaseException() {
-    super();
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   * @param code
-   *          error code
-   * @param cause
-   *          the cause
-   */
-  public CmisBaseException(String message, BigInteger code, Throwable cause) {
-    super(message, cause);
-    fCode = code;
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   * @param errorContent
-   *          error page content
-   * @param cause
-   *          the cause
-   */
-  public CmisBaseException(String message, String errorContent, Throwable 
cause) {
-    super(message, cause);
-    fErrorContent = errorContent;
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   * @param code
-   *          error code
-   */
-  public CmisBaseException(String message, BigInteger code) {
-    super(message);
-    fCode = code;
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   * @param errorContent
-   *          error page content
-   */
-  public CmisBaseException(String message, String errorContent) {
-    super(message);
-    fErrorContent = errorContent;
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   * @param cause
-   *          the cause
-   */
-  public CmisBaseException(String message, Throwable cause) {
-    this(message, (BigInteger) null, cause);
-  }
-
-  /**
-   * Constructor.
-   * 
-   * @param message
-   *          error message
-   */
-  public CmisBaseException(String message) {
-    this(message, (BigInteger) null);
-  }
-
-  /**
-   * Returns the error code sent by the CMIS repository (Web Services binding 
only).
-   * 
-   * @return error code or <code>null</code> if the CMIS repository didn't 
send an error code or the
-   *         binding doesn't support error codes.
-   */
-  public BigInteger getCode() {
-    return fCode;
-  }
-
-  /**
-   * Returns the content of the error page sent by the web server (AtomPub 
binding only).
-   * 
-   * @return the content of the error page or <code>null</code> if the server 
didn't send text
-   *         content.
-   */
-  public String getErrorContent() {
-    return fErrorContent;
-  }
+       /**
+        * Default constructor.
+        */
+       public CmisBaseException() {
+               super();
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        * @param code
+        *            error code
+        * @param cause
+        *            the cause
+        */
+       public CmisBaseException(String message, BigInteger code, Throwable 
cause) {
+               super(message, cause);
+               fCode = code;
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        * @param errorContent
+        *            error page content
+        * @param cause
+        *            the cause
+        */
+       public CmisBaseException(String message, String errorContent, Throwable 
cause) {
+               super(message, cause);
+               fErrorContent = errorContent;
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        * @param code
+        *            error code
+        */
+       public CmisBaseException(String message, BigInteger code) {
+               super(message);
+               fCode = code;
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        * @param errorContent
+        *            error page content
+        */
+       public CmisBaseException(String message, String errorContent) {
+               super(message);
+               fErrorContent = errorContent;
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        * @param cause
+        *            the cause
+        */
+       public CmisBaseException(String message, Throwable cause) {
+               this(message, (BigInteger) null, cause);
+       }
+
+       /**
+        * Constructor.
+        * 
+        * @param message
+        *            error message
+        */
+       public CmisBaseException(String message) {
+               this(message, (BigInteger) null);
+       }
+
+       /**
+        * Returns the error code sent by the CMIS repository (Web Services 
binding
+        * only).
+        * 
+        * @return error code or <code>null</code> if the CMIS repository didn't
+        *         send an error code or the binding doesn't support error 
codes.
+        */
+       public BigInteger getCode() {
+               return fCode;
+       }
+
+       /**
+        * Returns the content of the error page sent by the web server (AtomPub
+        * binding only).
+        * 
+        * @return the content of the error page or <code>null</code> if the 
server
+        *         didn't send text content.
+        */
+       public String getErrorContent() {
+               return fErrorContent;
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConnectionException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisConnectionException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisConnectionException() {
-    super();
-  }
-
-  public CmisConnectionException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisConnectionException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisConnectionException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisConnectionException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisConnectionException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisConnectionException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisConnectionException() {
+               super();
+       }
+
+       public CmisConnectionException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisConnectionException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisConnectionException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisConnectionException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisConnectionException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisConnectionException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisConstraintException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisConstraintException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisConstraintException() {
-    super();
-  }
-
-  public CmisConstraintException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisConstraintException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisConstraintException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisConstraintException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisConstraintException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisConstraintException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisConstraintException() {
+               super();
+       }
+
+       public CmisConstraintException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisConstraintException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisConstraintException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisConstraintException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisConstraintException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisConstraintException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisContentAlreadyExistsException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisContentAlreadyExistsException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisContentAlreadyExistsException() {
-    super();
-  }
-
-  public CmisContentAlreadyExistsException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisContentAlreadyExistsException(String message, String 
errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisContentAlreadyExistsException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisContentAlreadyExistsException(String message, String 
errorContent, Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisContentAlreadyExistsException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisContentAlreadyExistsException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisContentAlreadyExistsException() {
+               super();
+       }
+
+       public CmisContentAlreadyExistsException(String message, BigInteger 
code, Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisContentAlreadyExistsException(String message, String 
errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisContentAlreadyExistsException(String message, BigInteger 
code) {
+               super(message, code);
+       }
+
+       public CmisContentAlreadyExistsException(String message, String 
errorContent, Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisContentAlreadyExistsException(String message, Throwable 
cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisContentAlreadyExistsException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisFilterNotValidException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisFilterNotValidException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisFilterNotValidException() {
-    super();
-  }
-
-  public CmisFilterNotValidException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisFilterNotValidException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisFilterNotValidException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisFilterNotValidException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisFilterNotValidException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisFilterNotValidException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisFilterNotValidException() {
+               super();
+       }
+
+       public CmisFilterNotValidException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisFilterNotValidException(String message, String errorContent) 
{
+               super(message, errorContent);
+       }
+
+       public CmisFilterNotValidException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisFilterNotValidException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisFilterNotValidException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisFilterNotValidException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisInvalidArgumentException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisInvalidArgumentException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisInvalidArgumentException() {
-    super();
-  }
-
-  public CmisInvalidArgumentException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisInvalidArgumentException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisInvalidArgumentException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisInvalidArgumentException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisInvalidArgumentException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisInvalidArgumentException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisInvalidArgumentException() {
+               super();
+       }
+
+       public CmisInvalidArgumentException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisInvalidArgumentException(String message, String 
errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisInvalidArgumentException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisInvalidArgumentException(String message, String 
errorContent, Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisInvalidArgumentException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisInvalidArgumentException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNameConstraintViolationException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisNameConstraintViolationException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisNameConstraintViolationException() {
-    super();
-  }
-
-  public CmisNameConstraintViolationException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisNameConstraintViolationException(String message, String 
errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisNameConstraintViolationException(String message, BigInteger code) 
{
-    super(message, code);
-  }
-
-  public CmisNameConstraintViolationException(String message, String 
errorContent, Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisNameConstraintViolationException(String message, Throwable cause) 
{
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisNameConstraintViolationException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisNameConstraintViolationException() {
+               super();
+       }
+
+       public CmisNameConstraintViolationException(String message, BigInteger 
code, Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisNameConstraintViolationException(String message, String 
errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisNameConstraintViolationException(String message, BigInteger 
code) {
+               super(message, code);
+       }
+
+       public CmisNameConstraintViolationException(String message, String 
errorContent, Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisNameConstraintViolationException(String message, Throwable 
cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisNameConstraintViolationException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisNotSupportedException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisNotSupportedException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisNotSupportedException() {
-    super();
-  }
-
-  public CmisNotSupportedException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisNotSupportedException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisNotSupportedException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisNotSupportedException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisNotSupportedException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisNotSupportedException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisNotSupportedException() {
+               super();
+       }
+
+       public CmisNotSupportedException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisNotSupportedException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisNotSupportedException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisNotSupportedException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisNotSupportedException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisNotSupportedException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisObjectNotFoundException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisObjectNotFoundException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisObjectNotFoundException() {
-    super();
-  }
-
-  public CmisObjectNotFoundException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisObjectNotFoundException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisObjectNotFoundException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisObjectNotFoundException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisObjectNotFoundException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisObjectNotFoundException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisObjectNotFoundException() {
+               super();
+       }
+
+       public CmisObjectNotFoundException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisObjectNotFoundException(String message, String errorContent) 
{
+               super(message, errorContent);
+       }
+
+       public CmisObjectNotFoundException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisObjectNotFoundException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisObjectNotFoundException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisObjectNotFoundException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisPermissionDeniedException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisPermissionDeniedException() {
-    super();
-  }
-
-  public CmisPermissionDeniedException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisPermissionDeniedException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisPermissionDeniedException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisPermissionDeniedException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisPermissionDeniedException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisPermissionDeniedException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisPermissionDeniedException() {
+               super();
+       }
+
+       public CmisPermissionDeniedException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisPermissionDeniedException(String message, String 
errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisPermissionDeniedException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisPermissionDeniedException(String message, String 
errorContent, Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisPermissionDeniedException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisPermissionDeniedException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisRuntimeException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisRuntimeException() {
-    super();
-  }
-
-  public CmisRuntimeException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisRuntimeException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisRuntimeException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisRuntimeException(String message, String errorContent, Throwable 
cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisRuntimeException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisRuntimeException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisRuntimeException() {
+               super();
+       }
+
+       public CmisRuntimeException(String message, BigInteger code, Throwable 
cause) {
+               super(message, code, cause);
+       }
+
+       public CmisRuntimeException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisRuntimeException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisRuntimeException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisRuntimeException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisRuntimeException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisStorageException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisStorageException() {
-    super();
-  }
-
-  public CmisStorageException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisStorageException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisStorageException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisStorageException(String message, String errorContent, Throwable 
cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisStorageException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisStorageException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisStorageException() {
+               super();
+       }
+
+       public CmisStorageException(String message, BigInteger code, Throwable 
cause) {
+               super(message, code, cause);
+       }
+
+       public CmisStorageException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisStorageException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisStorageException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisStorageException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisStorageException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisStreamNotSupportedException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisStreamNotSupportedException() {
-    super();
-  }
-
-  public CmisStreamNotSupportedException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisStreamNotSupportedException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisStreamNotSupportedException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisStreamNotSupportedException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisStreamNotSupportedException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisStreamNotSupportedException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisStreamNotSupportedException() {
+               super();
+       }
+
+       public CmisStreamNotSupportedException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisStreamNotSupportedException(String message, String 
errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisStreamNotSupportedException(String message, BigInteger code) 
{
+               super(message, code);
+       }
+
+       public CmisStreamNotSupportedException(String message, String 
errorContent, Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisStreamNotSupportedException(String message, Throwable cause) 
{
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisStreamNotSupportedException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisUpdateConflictException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisUpdateConflictException() {
-    super();
-  }
-
-  public CmisUpdateConflictException(String message, BigInteger code, 
Throwable cause) {
-    super(message, code, cause);
-  }
-
-  public CmisUpdateConflictException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisUpdateConflictException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisUpdateConflictException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisUpdateConflictException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisUpdateConflictException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisUpdateConflictException() {
+               super();
+       }
+
+       public CmisUpdateConflictException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisUpdateConflictException(String message, String errorContent) 
{
+               super(message, errorContent);
+       }
+
+       public CmisUpdateConflictException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisUpdateConflictException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisUpdateConflictException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisUpdateConflictException(String message) {
+               super(message, (BigInteger) null);
+       }
 }

Modified: 
incubator/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/incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java?rev=934892&r1=934891&r2=934892&view=diff
==============================================================================
--- 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
 (original)
+++ 
incubator/chemistry/opencmis/trunk/chemistry-opencmis-commons/chemistry-opencmis-commons-api/src/main/java/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.java
 Fri Apr 16 14:11:19 2010
@@ -28,33 +28,33 @@ import java.math.BigInteger;
  */
 public class CmisVersioningException extends CmisBaseException {
 
-  private static final long serialVersionUID = 1L;
+       private static final long serialVersionUID = 1L;
 
-  public CmisVersioningException() {
-    super();
-  }
-
-  public CmisVersioningException(String message, BigInteger code, Throwable 
cause) {
-    super(message, code, cause);
-  }
-
-  public CmisVersioningException(String message, String errorContent) {
-    super(message, errorContent);
-  }
-
-  public CmisVersioningException(String message, BigInteger code) {
-    super(message, code);
-  }
-
-  public CmisVersioningException(String message, String errorContent, 
Throwable cause) {
-    super(message, errorContent, cause);
-  }
-
-  public CmisVersioningException(String message, Throwable cause) {
-    super(message, (BigInteger) null, cause);
-  }
-
-  public CmisVersioningException(String message) {
-    super(message, (BigInteger) null);
-  }
+       public CmisVersioningException() {
+               super();
+       }
+
+       public CmisVersioningException(String message, BigInteger code, 
Throwable cause) {
+               super(message, code, cause);
+       }
+
+       public CmisVersioningException(String message, String errorContent) {
+               super(message, errorContent);
+       }
+
+       public CmisVersioningException(String message, BigInteger code) {
+               super(message, code);
+       }
+
+       public CmisVersioningException(String message, String errorContent, 
Throwable cause) {
+               super(message, errorContent, cause);
+       }
+
+       public CmisVersioningException(String message, Throwable cause) {
+               super(message, (BigInteger) null, cause);
+       }
+
+       public CmisVersioningException(String message) {
+               super(message, (BigInteger) null);
+       }
 }


Reply via email to