
com.phoenixnap.oss.ramlapisync.generation.exception.InvalidCodeModelException 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;
/**
* A runtime exception telling the caller that there is a problem with the CodeModel.
* @author armin.weisser
* @since 0.4.1
*/
public class InvalidCodeModelException extends RuntimeException {
private static final long serialVersionUID = 1L;
public InvalidCodeModelException(String message) {
super(message);
}
public InvalidCodeModelException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy