org.nustaq.kontraktor.webapp.transpiler.TranspileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontraktor-http Show documentation
Show all versions of kontraktor-http Show documentation
http connectivity for kontraktor
package org.nustaq.kontraktor.webapp.transpiler;
import java.util.List;
/**
* Created by ruedi on 21.05.16.
*/
public class TranspileException extends RuntimeException {
List errors;
public TranspileException() {
}
public TranspileException(String message) {
super(message);
}
public TranspileException(String message, Throwable cause) {
super(message, cause);
}
public TranspileException(Throwable cause) {
super(cause);
}
public TranspileException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public List getErrors() {
return errors;
}
public TranspileException errors(final List errors) {
this.errors = errors;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy