Skip to content

Instantly share code, notes, and snippets.

@jeavila
Last active April 18, 2017 06:12
Show Gist options
  • Save jeavila/1de1334b226f8f9418725da3c9ec5777 to your computer and use it in GitHub Desktop.
Save jeavila/1de1334b226f8f9418725da3c9ec5777 to your computer and use it in GitHub Desktop.
Lanzamiento de una excepción.
<?php
function inverso($x)
{
if (!$x) {
// Se crea un objeto de tipo Exception, que será lanzado
// para que en otro lado pueda controlarse
throw new Exception ('División por cero.');
}
return 1 / $x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment