mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Implemented tests for AndOperation and optimized Operations
This commit is contained in:
11
application/src/Exception/NotDefinedException.php
Normal file
11
application/src/Exception/NotDefinedException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
class NotDefinedException extends \Exception
|
||||
{
|
||||
public function __construct($message = null)
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
11
application/src/Exception/NotProcessedException.php
Normal file
11
application/src/Exception/NotProcessedException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
class NotProcessedException extends \Exception
|
||||
{
|
||||
public function __construct($message = null)
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user