Skip to content

Instantly share code, notes, and snippets.

@lsmith77
Created September 26, 2013 11:30
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 lsmith77/6712898 to your computer and use it in GitHub Desktop.
Save lsmith77/6712898 to your computer and use it in GitHub Desktop.
<?php
interface ExceptionInterface
{
public function getMessage();
public function getCode();
public function getFile();
public function getLine();
public function getTrace();
public function getPrevious();
public function getTraceAsString();
}
@lsmith77
Copy link
Author

i guess in theory also relevant the __ magic methods

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment