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