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

io.proximax.exceptions.StorageNodeConnectionFailureException Maven / Gradle / Ivy

The newest version!
package io.proximax.exceptions;

/**
 * The exception when connecting to a storage connection
 */
public class StorageNodeConnectionFailureException extends RuntimeException {

    /**
     * Create instance of this exception
     *
     * @param message the exception message
     */
    public StorageNodeConnectionFailureException(String message) {
        super(message);
    }

    /**
     * Create instance of this exception
     *
     * @param message the exception message
     * @param cause   the cause of this exception
     */
    public StorageNodeConnectionFailureException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy