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

com.phoenixnap.oss.ramlapisync.generation.exception.InvalidCodeModelException Maven / Gradle / Ivy

Go to download

Components including the parsing of RAML documents and Spring MVC Annotations to create RAML models

There is a newer version: 0.9.1
Show newest version
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