blob: 50cb8f784e11060a7edaec44fd5255339e667532 (
plain)
1
2
3
4
5
6
7
|
package info.selflearner.ocr_telegram.exception;
public class PassportNotFoundException extends Exception {
public PassportNotFoundException(String errorMessage) {
super(errorMessage);
}
}
|