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

org.nustaq.kontraktor.webapp.transpiler.TranspileException Maven / Gradle / Ivy

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