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

com.rethinkdb.gen.exc.ReqlResourceLimitError 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 ReqlResourceLimitError extends ReqlRuntimeError {

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

    public ReqlResourceLimitError() {
    }

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

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

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

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

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

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

    public Optional getBacktrace() {
        return backtrace;
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy