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

io.hyperfoil.client.RestClientException Maven / Gradle / Ivy

package io.hyperfoil.client;

public class RestClientException extends RuntimeException {
   public RestClientException(String message) {
      super(message);
   }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy