| 
<?php
 // LOAD ALL THE EXCEPTIONS ////////////////////////////////////////////////////////////////////////
 
 /**
 * This file loads all the extensions needed by the script.
 * It is included by index.php
 */
 
 // ExifNotFound exception
 // thrown by the validator when the ExifModule has not beeb loaded
 require_once 'ExifNotFound.class.php';
 
 // Directory Exception
 require_once 'DirectoryException.class.php';
 
 
 ?>
 |