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

org.sdase.commons.shared.asyncapi.ReferencedClassNotFoundException Maven / Gradle / Ivy

Go to download

A libraries to bootstrap services easily that follow the patterns and specifications promoted by the SDA SE

There is a newer version: 7.0.88
Show newest version
package org.sdase.commons.shared.asyncapi;

/**
 * Exception to be thrown when a class referenced as {@code $ref:
 * class://fully.qualified.classname.of.Model} in an AsyncAPI is not found in the classpath.
 */
public class ReferencedClassNotFoundException extends RuntimeException {

  public ReferencedClassNotFoundException(ClassNotFoundException e) {
    super(e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy