2024-10-30 18:05:39 +07:00

14 lines
171 B
PHP

<?php
/**
* Throws exception if face was not detected in `faceDetect` call.
*/
namespace svay\Exception;
use Exception;
class NoFaceException extends Exception {
}