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

com.browserup.bup.mitm.exception.KeyGeneratorException Maven / Gradle / Ivy

/*
 * Modifications Copyright (c) 2019 BrowserUp, Inc.
 */

package com.browserup.bup.mitm.exception;

/**
 * Indicates an exception occurred while generating a key pair.
 */
public class KeyGeneratorException extends RuntimeException {
    private static final long serialVersionUID = 7607159769324427808L;

    public KeyGeneratorException() {
    }

    public KeyGeneratorException(String message) {
        super(message);
    }

    public KeyGeneratorException(String message, Throwable cause) {
        super(message, cause);
    }

    public KeyGeneratorException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy