ValidationError.java

  1. package no.nav.data.common.validator;

  2. import lombok.Data;

  3. import java.io.Serializable;

  4. @Data
  5. public class ValidationError implements Serializable {

  6.     private String reference;
  7.     private String errorType;
  8.     private String errorMessage;

  9.     public ValidationError(String reference, String errorType, String errorMessage) {
  10.         this.reference = reference;
  11.         this.errorType = errorType;
  12.         this.errorMessage = errorMessage;
  13.     }

  14.     @Override
  15.     public String toString() {
  16.         return String.format("%s -- %s -- %s", reference, errorType, errorMessage);
  17.     }
  18. }