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

uk.oczadly.karl.jnano.rpc.exception.RpcConfigForbiddenException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020 Karl Oczadly ([email protected])
 * Licensed under the MIT License
 */

package uk.oczadly.karl.jnano.rpc.exception;

/**
 * Thrown if a requested command could not be processed due to one or more node configuration parameters prohibiting it.
 */
public class RpcConfigForbiddenException extends RpcExternalException {
    
    public RpcConfigForbiddenException(String rawMessage) {
        super(rawMessage);
    }
    
    public RpcConfigForbiddenException(String message, String rawMessage) {
        super(message, rawMessage);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy