Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2006-08-26 14:06:39 +0000
committerEike Stepper2006-08-26 14:06:39 +0000
commitd426bfda588394504805138b67408cb7a5c5c74a (patch)
treed42f969ce3d512cf34315363629686fcc6357136
parent4d8d981390fedb97cbdb8128586700d0ccff2841 (diff)
downloadcdo-d426bfda588394504805138b67408cb7a5c5c74a.tar.gz
cdo-d426bfda588394504805138b67408cb7a5c5c74a.tar.xz
cdo-d426bfda588394504805138b67408cb7a5c5c74a.zip
[149847] javadoc does not work
https://bugs.eclipse.org/bugs/show_bug.cgi?id=149847
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java17
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java28
2 files changed, 40 insertions, 5 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java
index ca51470f38..026f10b304 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/DatabaseInconsistencyException.java
@@ -14,15 +14,20 @@ package org.eclipse.emf.cdo.server;
import org.eclipse.emf.cdo.core.CDOException;
+/**
+ * The <code>DatabaseInconsistencyException</code> class.<p>
+ *
+ * @author Eike Stepper
+ */
public class DatabaseInconsistencyException extends CDOException
{
/**
- *
+ * Needed for serialization.<p>
*/
- private static final long serialVersionUID = 3618700786088031544L;
+ private static final long serialVersionUID = 1L;
/**
- *
+ * Creates an instance of this class.<p>
*/
public DatabaseInconsistencyException()
{
@@ -30,6 +35,8 @@ public class DatabaseInconsistencyException extends CDOException
}
/**
+ * Creates an instance of this class.<p>
+ *
* @param message
*/
public DatabaseInconsistencyException(String message)
@@ -38,6 +45,8 @@ public class DatabaseInconsistencyException extends CDOException
}
/**
+ * Creates an instance of this class.<p>
+ *
* @param cause
*/
public DatabaseInconsistencyException(Throwable cause)
@@ -46,6 +55,8 @@ public class DatabaseInconsistencyException extends CDOException
}
/**
+ * Creates an instance of this class.<p>
+ *
* @param message
* @param cause
*/
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java
index 563a16639c..73470442b0 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ResourceNotFoundException.java
@@ -14,28 +14,52 @@ package org.eclipse.emf.cdo.server;
import org.eclipse.emf.cdo.core.CDOException;
+/**
+ * The <code>ResourceNotFoundException</code> class.<p>
+ *
+ * @author Eike Stepper
+ */
public class ResourceNotFoundException extends CDOException
{
/**
- *
+ * Needed for serialization.<p>
*/
- private static final long serialVersionUID = 3545239124224062515L;
+ private static final long serialVersionUID = 1L;
+ /**
+ * Creates an instance of this class.<p>
+ */
public ResourceNotFoundException()
{
super();
}
+ /**
+ * Creates an instance of this class.<p>
+ *
+ * @param message
+ */
public ResourceNotFoundException(String message)
{
super(message);
}
+ /**
+ * Creates an instance of this class.<p>
+ *
+ * @param cause
+ */
public ResourceNotFoundException(Throwable cause)
{
super(cause);
}
+ /**
+ * Creates an instance of this class.<p>
+ *
+ * @param message
+ * @param cause
+ */
public ResourceNotFoundException(String message, Throwable cause)
{
super(message, cause);

Back to the top