All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.esapi.errors.ValidationUploadException Maven / Gradle / Ivy

/**
 * OWASP Enterprise Security API (ESAPI)
 * 
 * This file is part of the Open Web Application Security Project (OWASP)
 * Enterprise Security API (ESAPI) project. For details, please see
 * http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2007 - The OWASP Foundation
 * 
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the
 * LICENSE before you use, modify, and/or redistribute this software.
 * 
 * @author Jeff Williams Aspect Security
 * @created 2007
 */
package org.owasp.esapi.errors;

/**
 * @author Jeff Williams ([email protected])
 */
public class ValidationUploadException extends ValidationException {

	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 1L;

	/**
	 * Instantiates a new validation exception.
	 */
	protected ValidationUploadException() {
		// hidden
	}

    /**
     * Create a new ValidationException
     * 
     * @param userMessage
     *            the message to display to users
     * @param logMessage
	 * 			  the message logged
     */
	public ValidationUploadException(String userMessage, String logMessage) {
		super(userMessage, logMessage);
	}

    /**
     * Create a new ValidationException
     * 
     * @param userMessage
     *            the message to display to users
     * @param logMessage
	 * 			  the message logged
     * @param cause
     * 			  the cause
     */
	public ValidationUploadException(String userMessage, String logMessage, Throwable cause) {
		super(userMessage, logMessage, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy