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

com.hashicorp.nomad.javasdk.NomadException Maven / Gradle / Ivy

There is a newer version: 0.11.3.0
Show newest version
package com.hashicorp.nomad.javasdk;

import javax.annotation.Nullable;

/**
 * An error either signaled by the remote agent or arising while interpreting its response.
 */
public class NomadException extends Exception {
    NomadException(@Nullable String message, @Nullable Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy