continuing the spread of javadoc comments
This commit is contained in:
parent
53098902f1
commit
ef629c8e48
|
@ -7,7 +7,7 @@
|
|||
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
||||
* 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>,
|
||||
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
|
@ -17,29 +17,60 @@
|
|||
*/
|
||||
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 <erbo@silcom.com>
|
||||
* @version X
|
||||
*/
|
||||
public class ValidationException extends VeniceException
|
||||
{
|
||||
/*--------------------------------------------------------------------------------
|
||||
* Constructors
|
||||
*--------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructs a new <CODE>ValidationException</CODE>.
|
||||
*/
|
||||
public ValidationException()
|
||||
{
|
||||
super();
|
||||
|
||||
} // 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)
|
||||
{
|
||||
super(msg);
|
||||
|
||||
} // 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
|
||||
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user