17 lines
312 B
Java
17 lines
312 B
Java
package app.mealsmadeeasy.api.recipe.view;
|
|
|
|
import lombok.Getter;
|
|
|
|
@Getter
|
|
public final class RecipeExceptionView {
|
|
|
|
private final String type;
|
|
private final String message;
|
|
|
|
public RecipeExceptionView(String type, String message) {
|
|
this.type = type;
|
|
this.message = message;
|
|
}
|
|
|
|
}
|