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

de.rub.nds.tlsbreaker.breakercommons.cca.OracleException Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
/**
 * TLS-Breaker - A tool collection of various attacks on TLS based on TLS-Attacker
 *
 * Copyright 2021-2022 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.tlsbreaker.breakercommons.cca;

/**
 * @version 0.1
 */
public class OracleException extends RuntimeException {

    /**
     *
     */
    public OracleException() {

    }

    /**
     *
     * @param message
     */
    public OracleException(String message) {
        super(message);
    }

    /**
     *
     * @param message
     * @param t
     */
    public OracleException(String message, Throwable t) {
        super(message, t);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy