|
From: <rga...@us...> - 2002-10-20 22:06:09
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring
In directory usw-pr-cvs1:/tmp/cvs-serv24366
Modified Files:
ScoringConfigurationException.java
Log Message:
Fixing checkstyle errors
Index: ScoringConfigurationException.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring/ScoringConfigurationException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ScoringConfigurationException.java 18 Oct 2002 14:56:45 -0000 1.1
--- ScoringConfigurationException.java 20 Oct 2002 22:06:06 -0000 1.2
***************
*** 42,49 ****
public class ScoringConfigurationException extends java.lang.Exception {
Exception root = null;
/**
! * Creates a new instance of <code>ScoringConfigurationException</code> without detail message.
*/
public ScoringConfigurationException() {
--- 42,51 ----
public class ScoringConfigurationException extends java.lang.Exception {
+ /** The root exception leading to this one*/
Exception root = null;
/**
! * Creates a new instance of
! * <code>ScoringConfigurationException</code> without detail message.
*/
public ScoringConfigurationException() {
***************
*** 52,56 ****
/**
! * Constructs an instance of <code>ScoringConfigurationException</code> with the specified detail message.
* @param msg the detail message.
*/
--- 54,60 ----
/**
! * Constructs an instance of
! * <code>ScoringConfigurationException</code>
! * with the specified detail message.
* @param msg the detail message.
*/
***************
*** 65,68 ****
--- 69,73 ----
* and the root exception supplied
* @param msg the detail message.
+ * @param e the root exception
*/
public ScoringConfigurationException(String msg, Exception e) {
|