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

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

There is a newer version: 2.2.19
Show newest version
package com.browserup.bup.mitm.exception;

/**
 * Indicates a general problem occurred while attempting to man-in-the-middle communications between the client and the
 * upstream server.
 */
public class MitmException extends RuntimeException {
    private static final long serialVersionUID = -1960691906515767537L;

    public MitmException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy