Implemented tests for AndOperation and optimized Operations

This commit is contained in:
Kevin Frantz
2018-10-31 13:24:49 +01:00
parent 6540e1dd95
commit 5848bec9ce
6 changed files with 113 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Exception;
class NotDefinedException extends \Exception
{
public function __construct($message = null)
{
parent::__construct($message);
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Exception;
class NotProcessedException extends \Exception
{
public function __construct($message = null)
{
parent::__construct($message);
}
}