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

com.github.mike10004.chromecookieimplant.CookieImplantException Maven / Gradle / Ivy

Go to download

The newest version!
package com.github.mike10004.chromecookieimplant;

/**
 * Exception thrown when a cookie implant operation fails.
 */
@SuppressWarnings("unused")
public class CookieImplantException extends RuntimeException {
    public CookieImplantException() {
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy