We need ProcessingError in repository.

This commit is contained in:
Paweł Dyda 2022-11-17 14:51:25 +01:00
parent 0e4858a184
commit 7ae12fd42f
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package pl.amu.edu.demo.either;
import lombok.AllArgsConstructor;
import lombok.ToString;
@AllArgsConstructor(staticName = "of")
@ToString
public class ProcessingError {
private final String errorMessage;
}