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

io.vertx.ext.web.validation.RequestPredicateException Maven / Gradle / Ivy

package io.vertx.ext.web.validation;

/**
 * Represents an error while trying to validate
 */
public class RequestPredicateException extends BadRequestException {

  public RequestPredicateException(String message) {
    super(message, null);
  }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy