Skip to content

Instantly share code, notes, and snippets.

@silvadanilo
Last active August 29, 2015 13:56
Show Gist options
  • Save silvadanilo/9197259 to your computer and use it in GitHub Desktop.
Save silvadanilo/9197259 to your computer and use it in GitHub Desktop.
<?php
namespace KbizeCli\Http\Exception;
class ServerErrorResponseException
{
public static function fromRaw($raw)
{
$e = new self($raw->getMessage(), $raw->getCode(), $raw->getPrevious());
return $e;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment