mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-22 04:09:22 +00:00
12 lines
302 B
Java
12 lines
302 B
Java
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);
|
|
}
|
|
}
|