14 lines
171 B
PHP
Raw Normal View History

2024-10-30 18:05:12 +07:00
<?php
/**
* Throws exception if face was not detected in `faceDetect` call.
*/
namespace svay\Exception;
use Exception;
class NoFaceException extends Exception {
}