1 package de.dlr.shepard.common.exceptions;
2
3 import jakarta.ws.rs.core.Response.Status;
4 import java.io.Serial;
5
6 public class ShepardProcessingException extends ShepardException {
7
8 @Serial
9 private static final long serialVersionUID = 1125700124551787161L;
10
11 public ShepardProcessingException(String message) {
12 super(message, Status.INTERNAL_SERVER_ERROR);
13 }
14 }