Skip to content

Instantly share code, notes, and snippets.

@medinadato
Created April 30, 2014 12:04
Show Gist options
  • Save medinadato/acafcd1d747e77ce4c89 to your computer and use it in GitHub Desktop.
Save medinadato/acafcd1d747e77ce4c89 to your computer and use it in GitHub Desktop.
<?php
class artista {
public function view() {
try {
$letras->anotherView();
} catch (\ArtistaException $e) {
...
}
}
}
class letras {
public function anotherView() {
try {
...
} catch (\LetrasException $e) {
...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment