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

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

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

package com.browserup.bup.mitm.exception;

/**
 * Indicates that an error occurred while attempting to create or populate a {@link com.browserup.bup.mitm.TrustSource}.
 */
public class TrustSourceException extends RuntimeException {
    public TrustSourceException() {
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy