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

com.applitools.eyes.EyesError Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes;

import com.applitools.eyes.universal.dto.InfoDto;

/**
 * Eyes Error
 */
public class EyesError {
  private String message;
  private String stack;
  private String reason;
  private InfoDto info;

  public EyesError() {
  }

  public EyesError(String message, String stack) {
    this.message = message;
    this.stack = stack;
  }

  public String getMessage() {
    return message;
  }

  public void setMessage(String message) {
    this.message = message;
  }

  public String getStack() {
    return stack;
  }

  public void setStack(String stack) {
    this.stack = stack;
  }

  public String getReason() {
    return reason;
  }

  public void setReason(String reason) {
    this.reason = reason;
  }

  public InfoDto getInfo() {
    return info;
  }

  public void setInfo(InfoDto info) {
    this.info = info;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy