You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dg...@apache.org on 2003/06/07 20:06:43 UTC

cvs commit: jakarta-commons/validator/src/share/org/apache/commons/validator ValidatorException.java

dgraham     2003/06/07 11:06:43

  Modified:    validator/src/share/org/apache/commons/validator
                        ValidatorException.java
  Log:
  Doc changes only.
  
  Revision  Changes    Path
  1.4       +22 -24    jakarta-commons/validator/src/share/org/apache/commons/validator/ValidatorException.java
  
  Index: ValidatorException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/ValidatorException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ValidatorException.java	30 Mar 2002 04:33:17 -0000	1.3
  +++ ValidatorException.java	7 Jun 2003 18:06:43 -0000	1.4
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -59,12 +59,8 @@
    *
    */
   
  -
   package org.apache.commons.validator;
   
  -import java.io.Serializable;
  -
  -
   /**
    * <p>Exception for the Validator Framework.  All other 
    * <code>Exception</code>s thrown while the 
  @@ -74,21 +70,23 @@
    *
    * @author David Winterfeldt
    * @version $Revision$ $Date$
  -*/
  -public class ValidatorException extends Exception implements Serializable{
  + */
  +public class ValidatorException extends Exception {
   
  -   /**
  -    * Constructs an Exception with no specified detail message.
  -   */
  -   public ValidatorException() {}
  -   
  -   /**
  -    * Constructs an Exception with the specified detail message.
  -    * 
  -    * @param	message		The error message.
  -   */
  -   public ValidatorException(String message) {
  -      super(message);	
  -   }
  +	/**
  +	 * Constructs an Exception with no specified detail message.
  +	 */
  +	public ValidatorException() {
  +        super();
  +	}
  +
  +	/**
  +	 * Constructs an Exception with the specified detail message.
  +	 * 
  +	 * @param	message The error message.
  +	 */
  +	public ValidatorException(String message) {
  +		super(message);
  +	}
   
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org