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

org.iris_events.asyncapi.runtime.exception.AnnotationValidationException Maven / Gradle / Ivy

There is a newer version: 6.1.8
Show newest version
package org.iris_events.asyncapi.runtime.exception;

import java.util.List;

import org.jboss.jandex.AnnotationInstance;

public class AnnotationValidationException extends RuntimeException {
    private final List faultyAnnotations;

    public AnnotationValidationException(String msg, List faultyAnnotations) {
        super(msg);
        this.faultyAnnotations = faultyAnnotations;
    }

    public List getFaultyAnnotations() {
        return faultyAnnotations;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy