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; } }