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

com.descope.proxy.impl.ErrorDetails Maven / Gradle / Ivy

There is a newer version: 1.0.30
Show newest version
package com.descope.proxy.impl;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class ErrorDetails {
  private String errorCode;
  private String errorDescription;
  private String errorMessage;
  private String message;

  public String getActualMessage() {
    return errorMessage == null
      ? message == null ? errorDescription : message
      : errorMessage;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy