mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-07-23 20:34:56 +02:00
13 lines
171 B
PHP
13 lines
171 B
PHP
<?php
|
|
|
|
/**
|
|
* Throws exception if face was not detected in `faceDetect` call.
|
|
*/
|
|
|
|
namespace svay\Exception;
|
|
|
|
use Exception;
|
|
|
|
class NoFaceException extends Exception {
|
|
|
|
}
|