![JAR search and dependency download from the Maven repository](/logo.png)
com.browserup.bup.mitm.exception.MitmException Maven / Gradle / Ivy
/*
* Modifications Copyright (c) 2019 BrowserUp, Inc.
*/
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 - 2025 Weber Informatics LLC | Privacy Policy