![JAR search and dependency download from the Maven repository](/logo.png)
com.phoenixnap.oss.ramlapisync.raml.UnsupportedRamlVersionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springmvc-raml-parser Show documentation
Show all versions of springmvc-raml-parser Show documentation
Components including the parsing of RAML documents and Spring MVC Annotations to create RAML models
The newest version!
package com.phoenixnap.oss.ramlapisync.raml;
import java.util.Arrays;
/**
* @author aweisser
*/
public class UnsupportedRamlVersionError extends Error {
private static final long serialVersionUID = -2773078854396182834L;
public UnsupportedRamlVersionError(RamlVersion... supportedVersions) {
super("RAML Version is not supported. Supported versions are " + Arrays.asList(supportedVersions));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy