org.raml.ramltopojo.GenerationException Maven / Gradle / Ivy
package org.raml.ramltopojo;
/**
* Created. There, you have it.
*/
public class GenerationException extends RuntimeException {
public GenerationException() {
}
public GenerationException(String message) {
super(message);
}
public GenerationException(String message, Throwable cause) {
super(message, cause);
}
public GenerationException(Throwable cause) {
super(cause);
}
public GenerationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}