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

com.github.alexdlaird.exception.JavaNgrokSecurityException Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
/*
 * Copyright (c) 2021-2024 Alex Laird
 *
 * SPDX-License-Identifier: MIT
 */

package com.github.alexdlaird.exception;

import com.github.alexdlaird.ngrok.process.NgrokProcess;

/**
 * Thrown from {@link NgrokProcess} when a security error occurs.
 */
public class JavaNgrokSecurityException extends JavaNgrokException {

    /**
     * An exception with a message.
     *
     * @param message The message describing the exception.
     */
    public JavaNgrokSecurityException(final String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy