- From: Florent Batard via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 17 Jun 2008 13:41:15 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/exceptions In directory hutz:/tmp/cvs-serv11946/org/w3c/unicorn/exceptions Modified Files: UnsupportedMimeTypeException.java NoDocumentException.java EmptyDocumentException.java ParameterException.java NoTaskException.java NoMimeTypeException.java Log Message: Updating the javadoc for all the project Index: NoDocumentException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/NoDocumentException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- NoDocumentException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ NoDocumentException.java 17 Jun 2008 13:41:13 -0000 1.2 @@ -7,19 +7,18 @@ /** * NoDocumentException<br /> * Created: Jul 7, 2006 5:26:38 PM<br /> - * @author Jean-Guilhem Rouel + * + * @author Jean-Guilhem Rouel Exception used when there is no document to + * analyze */ public class NoDocumentException extends Exception { - /** - * - */ - private static final long serialVersionUID = -4395530018963595605L; + private static final long serialVersionUID = -4395530018963595605L; public NoDocumentException() { super(); } - + public NoDocumentException(String message) { super(message); } Index: NoTaskException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/NoTaskException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- NoTaskException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ NoTaskException.java 17 Jun 2008 13:41:13 -0000 1.2 @@ -7,19 +7,18 @@ /** * NoTaskException<br /> * Created: Jul 7, 2006 5:43:15 PM<br /> - * @author Jean-Guilhem Rouel + * + * @author Jean-Guilhem Rouel Exception used when the user didn't specify the + * task to perform */ public class NoTaskException extends Exception { - /** - * - */ - private static final long serialVersionUID = -7057542417180953708L; + private static final long serialVersionUID = -7057542417180953708L; public NoTaskException() { this("No task chosen"); } - + public NoTaskException(String message) { super(message); } Index: UnsupportedMimeTypeException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/UnsupportedMimeTypeException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- UnsupportedMimeTypeException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ UnsupportedMimeTypeException.java 17 Jun 2008 13:41:12 -0000 1.2 @@ -8,13 +8,14 @@ * UnsupportedMimeTypeException<br /> * Created: May 30, 2006 10:21:13 AM<br /> * Exception used to report errors when an observer does not support a mime type + * * @author Jean-Guilhem ROUEL */ public class UnsupportedMimeTypeException extends Exception { - + private static final long serialVersionUID = -6581746591098195257L; - + public UnsupportedMimeTypeException(String message) { super("Unsupported Content-Type: " + message); - } + } } Index: ParameterException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/ParameterException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- ParameterException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ ParameterException.java 17 Jun 2008 13:41:13 -0000 1.2 @@ -7,18 +7,12 @@ /** * ParameterException<br /> * Created: Jun 9, 2006 5:35:55 PM<br /> + * Exception used when the parameters aren't well formed */ public class ParameterException extends Exception { - /** - * - */ - private static final long serialVersionUID = 6882194955581911106L; + private static final long serialVersionUID = 6882194955581911106L; - /** - * Creates a new ParameterException. - * @param string - */ public ParameterException(String string) { super(string); } Index: NoMimeTypeException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/NoMimeTypeException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- NoMimeTypeException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ NoMimeTypeException.java 17 Jun 2008 13:41:13 -0000 1.2 @@ -7,19 +7,18 @@ /** * NoMimeTypeException<br /> * Created: Jul 7, 2006 5:30:51 PM<br /> - * @author Jean-Guilhem Rouel + * + * @author Jean-Guilhem Rouel Exception that occurs when mime-type isn't + * specified */ public class NoMimeTypeException extends Exception { - /** - * - */ - private static final long serialVersionUID = -1030043318614100474L; + private static final long serialVersionUID = -1030043318614100474L; public NoMimeTypeException() { super(); } - + public NoMimeTypeException(String message) { super(message); } Index: EmptyDocumentException.java =================================================================== RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/exceptions/EmptyDocumentException.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- EmptyDocumentException.java 31 Aug 2006 09:09:21 -0000 1.1.1.1 +++ EmptyDocumentException.java 17 Jun 2008 13:41:13 -0000 1.2 @@ -7,20 +7,18 @@ /** * EmptyDocumentException<br /> * Created: Jul 7, 2006 5:26:56 PM<br /> - * @author Jean-Guilhem Rouel + * + * @author Jean-Guilhem Rouel Exception used when the document is empty */ public class EmptyDocumentException extends Exception { - /** - * - */ - private static final long serialVersionUID = 1785553648502514203L; - + private static final long serialVersionUID = 1785553648502514203L; + public EmptyDocumentException() { super(); } - - public EmptyDocumentException (final String message) { + + public EmptyDocumentException(final String message) { super(message); } }
Received on Tuesday, 17 June 2008 13:41:52 UTC