Details
diff --git a/bdi-jade/src/bdi4jade/exception/BeliefAlreadyExistsException.java b/bdi-jade/src/bdi4jade/exception/BeliefAlreadyExistsException.java
index af69221..83dd2a5 100644
--- a/bdi-jade/src/bdi4jade/exception/BeliefAlreadyExistsException.java
+++ b/bdi-jade/src/bdi4jade/exception/BeliefAlreadyExistsException.java
@@ -16,7 +16,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// To contact the authors:
-// http://inf.ufrgs.br/~ingridnunes/bdi4jade/
+// http://inf.ufrgs.br/prosoft/bdi4jade/
//
//----------------------------------------------------------------------------
@@ -28,7 +28,7 @@ import bdi4jade.belief.Belief;
* This class represents an exception that a belief that already exists in the
* belief base is trying to be added.
*
- * @author ingrid
+ * @author Ingrid Nunes
*/
public class BeliefAlreadyExistsException extends RuntimeException {
@@ -60,5 +60,5 @@ public class BeliefAlreadyExistsException extends RuntimeException {
public String toString() {
return "Belief already exists exception: " + belief;
}
-
+
}
diff --git a/bdi-jade/src/bdi4jade/exception/ParameterException.java b/bdi-jade/src/bdi4jade/exception/ParameterException.java
index 69a2804..021738f 100644
--- a/bdi-jade/src/bdi4jade/exception/ParameterException.java
+++ b/bdi-jade/src/bdi4jade/exception/ParameterException.java
@@ -16,13 +16,17 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// To contact the authors:
-// http://inf.ufrgs.br/~ingridnunes/bdi4jade/
+// http://inf.ufrgs.br/prosoft/bdi4jade/
//
//----------------------------------------------------------------------------
package bdi4jade.exception;
/**
+ * This class represents an exception that occurred when parameters are being
+ * set. Such parameters may be plan parameters, for example, that are passed in
+ * goals.
+ *
* @author Ingrid Nunes
*
*/
diff --git a/bdi-jade/src/bdi4jade/exception/PlanInstantiationException.java b/bdi-jade/src/bdi4jade/exception/PlanInstantiationException.java
index 51ef6fb..4aac293 100644
--- a/bdi-jade/src/bdi4jade/exception/PlanInstantiationException.java
+++ b/bdi-jade/src/bdi4jade/exception/PlanInstantiationException.java
@@ -16,7 +16,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// To contact the authors:
-// http://inf.ufrgs.br/~ingridnunes/bdi4jade/
+// http://inf.ufrgs.br/prosoft/bdi4jade/
//
//----------------------------------------------------------------------------
@@ -26,7 +26,7 @@ package bdi4jade.exception;
* This method represents an exception that occurred during the instantiation
* process of a {@link PlanBodyInterface}.
*
- * @author ingrid
+ * @author Ingrid Nunes
*/
public class PlanInstantiationException extends Exception {