wrapper.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php namespace System\Exception;
  2. use System\File;
  3. class Wrapper {
  4. /**
  5. * The exception being wrapped.
  6. *
  7. * @var Exception
  8. */
  9. public $exception;
  10. /**
  11. * Human-readable error levels and descriptions.
  12. *
  13. * @var array
  14. */
  15. private $levels = array(
  16. 0 => 'Error',
  17. E_ERROR => 'Error',
  18. E_WARNING => 'Warning',
  19. E_PARSE => 'Parsing Error',
  20. E_NOTICE => 'Notice',
  21. E_CORE_ERROR => 'Core Error',
  22. E_CORE_WARNING => 'Core Warning',
  23. E_COMPILE_ERROR => 'Compile Error',
  24. E_COMPILE_WARNING => 'Compile Warning',
  25. E_USER_ERROR => 'User Error',
  26. E_USER_WARNING => 'User Warning',
  27. E_USER_NOTICE => 'User Notice',
  28. E_STRICT => 'Runtime Notice'
  29. );
  30. /**
  31. * Create a new exception wrapper instance.
  32. *
  33. * @param Exception $e
  34. * @return void
  35. */
  36. public function __construct($e)
  37. {
  38. $this->exception = $e;
  39. }
  40. /**
  41. * Get a human-readable version of the exception error code.
  42. *
  43. * @return string
  44. */
  45. public function severity()
  46. {
  47. if (array_key_exists($this->exception->getCode(), $this->levels))
  48. {
  49. return $this->levels[$this->exception->getCode()];
  50. }
  51. return $this->exception->getCode();
  52. }
  53. /**
  54. * Get the exception error message formatted for use by Laravel.
  55. *
  56. * The exception file paths will be shortened, and the file name and line number
  57. * will be added to the exception message.
  58. *
  59. * @return string
  60. */
  61. public function message()
  62. {
  63. $file = str_replace(array(APP_PATH, SYS_PATH), array('APP_PATH/', 'SYS_PATH/'), $this->exception->getFile());
  64. return rtrim($this->exception->getMessage(), '.').' in '.$file.' on line '.$this->exception->getLine().'.';
  65. }
  66. /**
  67. * Get the code surrounding the line where the exception occurred.
  68. *
  69. * @return array
  70. */
  71. public function context()
  72. {
  73. return File::snapshot($this->exception->getFile(), $this->exception->getLine());
  74. }
  75. /**
  76. * Magic Method to pass function calls to the exception.
  77. */
  78. public function __call($method, $parameters)
  79. {
  80. return call_user_func_array(array($this->exception, $method), $parameters);
  81. }
  82. }