1 package de.dlr.shepard.common.exceptions; 2 3 import lombok.Value; 4 5 @Value 6 public class ApiError { 7 8 private final int status; 9 private final String exception; 10 private final String message; 11 }