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

com.phoenixnap.oss.ramlapisync.generation.exception.RuleCanNotProcessModelException 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;

/**
 * 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