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

de.rub.nds.tlsattacker.attacks.exception.WordlistNotFoundException Maven / Gradle / Ivy

/**
 * TLS-Attacker - A Modular Penetration Testing Framework for TLS
 *
 * Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
 *
 * Licensed under Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 */

package de.rub.nds.tlsattacker.attacks.exception;

/**
 *
 */
public class WordlistNotFoundException extends RuntimeException {

    /**
     *
     */
    public WordlistNotFoundException() {
    }

    /**
     *
     * @param string
     */
    public WordlistNotFoundException(String string) {
        super(string);
    }

    /**
     *
     * @param string
     * @param throwable
     */
    public WordlistNotFoundException(String string, Throwable throwable) {
        super(string, throwable);
    }

    /**
     *
     * @param throwable
     */
    public WordlistNotFoundException(Throwable throwable) {
        super(throwable);
    }

    /**
     *
     * @param string
     * @param throwable
     * @param bln
     * @param bln1
     */
    public WordlistNotFoundException(String string, Throwable throwable, boolean bln, boolean bln1) {
        super(string, throwable, bln, bln1);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy