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

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

Go to download

The Enterprise Security API (ESAPI) project is an OWASP project to create simple strong security controls for every web platform. Security controls are not simple to build. You can read about the hundreds of pitfalls for unwary developers on the OWASP web site. By providing developers with a set of strong controls, we aim to eliminate some of the complexity of creating secure web applications. This can result in significant cost savings across the SDLC.

There is a newer version: 2.5.3.1
Show newest version
/**
 * 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;

/**
 * A CertificateException should be thrown for any problems that arise during
 * processing of digital certificates.
 * 
 * @author Jeff Williams ([email protected])
 */
public class CertificateException extends EnterpriseSecurityException {

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

	/**
	 * Instantiates a new certificate exception.
	 */
	protected CertificateException() {
		// hidden
	}

    /**
     * Creates a new instance of CertificateException.
     * 
     * @param userMessage the message displayed to the user
     * @param logMessage the message logged
     */
    public CertificateException(String userMessage, String logMessage) {
        super(userMessage, logMessage);
    }

    /**
     * Instantiates a new CertificateException.
     * 
     * @param userMessage the message displayed to the user
     * @param logMessage the message logged
     * @param cause the cause
     */
    public CertificateException(String userMessage, String logMessage, Throwable cause) {
        super(userMessage, logMessage, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy