Exception.php 230 B

1234567891011121314
  1. <?php
  2. namespace SendGrid;
  3. /**
  4. * An exception thrown when SendGrid does not return a 200
  5. */
  6. class Exception extends \Exception
  7. {
  8. public function getErrors()
  9. {
  10. return json_decode($this->message)->errors;
  11. }
  12. }