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

org.shaneking.spring.currentlimiter.exception.CurrentLimiterException Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package org.shaneking.spring.currentlimiter.exception;

public class CurrentLimiterException extends RuntimeException {
  public CurrentLimiterException() {
    super();
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy