mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-24 10:52:00 +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);
|
||
|
}
|
||
|
}
|