Stirling-PDF/src/main/java/stirling/software/SPDF/model/exception/NoProviderFoundException.java

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
302 B
Java
Raw Normal View History

2025-01-24 18:14:15 +00:00
package stirling.software.SPDF.model.exception;
public class NoProviderFoundException extends Exception {
public NoProviderFoundException(String message) {
super(message);
}
public NoProviderFoundException(String message, Throwable cause) {
super(message, cause);
}
}