Example usage for io.vertx.core VertxException subclass-usage

List of usage examples for io.vertx.core VertxException subclass-usage

Introduction

In this page you can find the example usage for io.vertx.core VertxException subclass-usage.

Usage

From source file net.kuujo.vertigo.VertigoException.java

/**
 * Base Vertigo exception.
 *
 * @author <a href="http://github.com/kuujo">Jordan Halterman</a>
 */
@SuppressWarnings("serial")

From source file org.etourdot.vertx.marklogic.http.ResourceNotFoundException.java

public class ResourceNotFoundException extends VertxException {
    public ResourceNotFoundException(String message) {
        super(message);
    }

    public ResourceNotFoundException(String message, Throwable cause) {