com.payu.common.client.error.FieldValidationError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-common-client Show documentation
Show all versions of ms-common-client Show documentation
Librairie commune pour les modules MS Clients
package com.payu.common.client.error;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/** Specialisation pour les erreurs global de validation des champs */
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class FieldValidationError implements ApiSubError {
private String object;
private String code;
private String field;
private Object rejectedValue;
private String message;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy