continuing the spread of javadoc comments

This commit is contained in:
Eric J. Bowersox 2001-11-15 05:41:39 +00:00
parent 53098902f1
commit ef629c8e48

View File

@ -7,7 +7,7 @@
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific * WARRANTY OF ANY KIND, either express or implied. See the License for the specific
* language governing rights and limitations under the License. * language governing rights and limitations under the License.
* *
* The Original Code is the Venice Web Community System. * The Original Code is the Venice Web Communities System.
* *
* The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>, * The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are * for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
@ -17,29 +17,60 @@
*/ */
package com.silverwrist.venice; package com.silverwrist.venice;
/**
* An exception that is commonly thrown when a particular piece of data retrieved from the user is
* not valid.
*
* @author Eric J. Bowersox &lt;erbo@silcom.com&gt;
* @version X
*/
public class ValidationException extends VeniceException public class ValidationException extends VeniceException
{ {
/*--------------------------------------------------------------------------------
* Constructors
*--------------------------------------------------------------------------------
*/
/**
* Constructs a new <CODE>ValidationException</CODE>.
*/
public ValidationException() public ValidationException()
{ {
super(); super();
} // end constructor } // end constructor
/**
* Constructs a new <CODE>ValidationException</CODE> with a text message.
*
* @param msg The message to set in this exception.
*/
public ValidationException(String msg) public ValidationException(String msg)
{ {
super(msg); super(msg);
} // end constructor } // end constructor
public ValidationException(Exception e) /**
* Constructs a new <CODE>ValidationException</CODE> wrapping another exception.
*
* @param inner The exception wrapped by this one.
*/
public ValidationException(Throwable inner)
{ {
super(e); super(inner);
} // end constructor } // end constructor
public ValidationException(String msg, Exception e) /**
* Constructs a new <CODE>ValidationException</CODE> wrapping another exception.
*
* @param msg The message to set in this exception.
* @param inner The exception wrapped by this one.
*/
public ValidationException(String msg, Throwable inner)
{ {
super(msg,e); super(msg,inner);
} // end constructor } // end constructor