Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 10067 invoked from network); 7 Jun 2003 18:06:46 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 7 Jun 2003 18:06:46 -0000 Received: (qmail 16114 invoked by uid 97); 7 Jun 2003 18:09:03 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 16107 invoked from network); 7 Jun 2003 18:09:03 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 7 Jun 2003 18:09:03 -0000 Received: (qmail 9871 invoked by uid 500); 7 Jun 2003 18:06:44 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 9857 invoked by uid 500); 7 Jun 2003 18:06:44 -0000 Received: (qmail 9853 invoked from network); 7 Jun 2003 18:06:44 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 7 Jun 2003 18:06:44 -0000 Received: (qmail 95401 invoked by uid 1581); 7 Jun 2003 18:06:43 -0000 Date: 7 Jun 2003 18:06:43 -0000 Message-ID: <20030607180643.95400.qmail@icarus.apache.org> From: dgraham@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/validator/src/share/org/apache/commons/validator ValidatorException.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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; - - /** *

Exception for the Validator Framework. All other * Exceptions 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