As a solution to your problem please try executing following code snippet
try
{
$json = @file_get_contents("sidiowdiowjdiso", true); //getting the file content
if($json==false)
{
throw new Exception( 'Something really gone wrong');
}
}
catch (Exception $e)
{
echo $e->getMessage();
}