for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Jared King <[email protected]>
*
* @link http://jaredtking.com
* @copyright 2015 Jared King
* @license MIT
*/
namespace Pulsar\Exception;
use Exception;
class AdapterException extends ModelException
{
* @var Exception
private $exception;
* Sets the underlying exception.
* @param Exception $e
public function setException(Exception $e)
$this->exception = $e;
}
* Gets the underlying exception.
* @return Exception
public function getException()
return $this->exception;