package dk.statsbiblioteket.medieplatform.autonomous; /** The batch or event requested was not found. */ public class NotFoundException extends Exception { public NotFoundException() { } public NotFoundException(String message) { super(message); } public NotFoundException(String message, Throwable cause) { super(message, cause); } public NotFoundException(Throwable cause) { super(cause); } public NotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }