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

com.rethinkdb.gen.exc.ReqlError Maven / Gradle / Ivy

There is a newer version: 2.3.2.20160729
Show newest version
// Autogenerated by metajava.py.
// Do not edit this file directly.
// The template for this file is located at:
// ../../../../../../../../templates/Exception.java
package com.rethinkdb.gen.exc;

import java.util.Optional;
import com.rethinkdb.ast.ReqlAst;
import com.rethinkdb.model.Backtrace;

public class ReqlError extends RuntimeException {

    Optional backtrace = Optional.empty();
    Optional term = Optional.empty();

    public ReqlError() {
    }

    public ReqlError(String message) {
        super(message);
    }

    public ReqlError(String format, Object... args) {
        super(String.format(format, args));
    }

    public ReqlError(String message, Throwable cause) {
        super(message, cause);
    }

    public ReqlError(Throwable cause) {
        super(cause);
    }

    public ReqlError(String msg, ReqlAst term, Backtrace bt) {
        super(msg);
        this.backtrace = Optional.ofNullable(bt);
        this.term = Optional.ofNullable(term);
    }

    public ReqlError setBacktrace(Backtrace backtrace) {
        this.backtrace = Optional.ofNullable(backtrace);
        return this;
    }

    public Optional getBacktrace() {
        return backtrace;
    }

    public ReqlError setTerm(ReqlAst term) {
        this.term = Optional.ofNullable(term);
        return this;
    }

    public Optional getTerm() {
        return this.term;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy