for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Queryr\EntityStore;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class EntityStoreException extends \RuntimeException {
public function __construct( $message, \Exception $previous = null ) {
parent::__construct( $message, 0, $previous );
}