Skip to content

Instantly share code, notes, and snippets.

@schleumer
Created December 21, 2014 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schleumer/5d58f25928a7e1461c2f to your computer and use it in GitHub Desktop.
Save schleumer/5d58f25928a7e1461c2f to your computer and use it in GitHub Desktop.
try {
if (empty($_POST["name"])) {
throw new UserRegistrationException("Your name cannot be empty.");
}
if (filter_var($_POST["email"])) {
throw new UserRegistrationException("Invalid email");
}
} catch (UserRegistrationException $e) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment