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

io.serialized.client.feed.RetryException Maven / Gradle / Ivy

The newest version!
package io.serialized.client.feed;

public class RetryException extends RuntimeException {

  public RetryException() {
  }

  public RetryException(String message) {
    super(message);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy