for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Silk\Exception;
use WP_Error;
class WP_ErrorException extends \RuntimeException
{
public function __construct(WP_Error $error)
$this->message = $error->get_error_message();
}