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

com.fitbur.failsafe.FailsafeException Maven / Gradle / Ivy

The newest version!
package com.fitbur.failsafe;

/**
 * Thrown when a synchronous Failsafe run() call fails with an exception. Use {@link Throwable#getCause()} to learn the
 * cause of the failure.
 * 
 * @author Jonathan Halterman
 */
public class FailsafeException extends RuntimeException {
  private static final long serialVersionUID = 1L;

  FailsafeException(Throwable t) {
    super(t);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy