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

org.openmetadata.service.exception.LimitsException Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.service.exception;

import javax.ws.rs.core.Response;
import org.openmetadata.sdk.exception.WebServiceException;

public class LimitsException extends WebServiceException {
  private static final String ERROR_TYPE = "LIMITS_EXCEPTION";

  public LimitsException(String message) {
    super(Response.Status.TOO_MANY_REQUESTS, ERROR_TYPE, message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy