for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Swis\PdfcrowdClient\Exceptions;
class PdfcrowdException extends \Exception
{
public function __toString()
if ($this->code) {
return "[{$this->code}] {$this->message}\n";
} else {
return "{$this->message}\n";
}