
com.phoenixnap.oss.ramlapisync.generation.exception.RuleCanNotProcessModelException 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
package com.phoenixnap.oss.ramlapisync.generation.exception;
/**
* An exception that tells the user that a rule can't process the given RAML model.
* @author armin.weiss
* er
* @since 0.4.1
*/
public class RuleCanNotProcessModelException extends RuntimeException {
private static final long serialVersionUID = 1L;
public RuleCanNotProcessModelException(String message) {
super(message);
}
public RuleCanNotProcessModelException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy