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

org.openmetadata.service.exception.CustomExceptionMessage 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 CustomExceptionMessage extends WebServiceException {
  public CustomExceptionMessage(Response.Status status, String errorType, String message) {
    super(status.getStatusCode(), errorType, message);
  }

  public CustomExceptionMessage(Response response, String message) {
    super(response, message);
  }

  public CustomExceptionMessage(int status, String errorType, String message) {
    super(status, errorType, message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy