Tadaaaaaaaaaaa !!
Code PHP :
<?php
try
{
include_once( 'templates/registration/index.php' );
}
catch( Exception $exception ) {}
Code PHP :
<?php
function __construct( $sTemplate )
{
if( is_file( $sTemplate ) )
{
$this -> sFile = $sTemplate;
}
else
{
throw new Exception( 'File <b>' . $sTemplate . '</b> not found.' );
}
}