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