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

com.acrolinx.sidebar.pojo.SidebarError Maven / Gradle / Ivy

/* Copyright (c) 2018 Acrolinx GmbH */
package com.acrolinx.sidebar.pojo;

/** Error Object returned if an error occurred within the Acrolinx Sidebar. */
public class SidebarError {
  private final String code;
  private final String message;

  public SidebarError(String message, String code) {
    this.message = message;
    this.code = code;
  }

  public String getErrorCode() {
    return code;
  }

  public String getMessage() {
    return message;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy