Added base files, with the basic ability to add/remove variables from the Runtime.
This commit is contained in:
parent
aef02c4bff
commit
7e5207c45a
19 changed files with 906 additions and 0 deletions
16
src/RTEX/Exceptions/Core/UnsupportedInstructionException.php
Normal file
16
src/RTEX/Exceptions/Core/UnsupportedInstructionException.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace RTEX\Exceptions\Core;
|
||||
|
||||
class UnsupportedInstructionException extends \Exception
|
||||
{
|
||||
/**
|
||||
* UnsupportedInstructionException constructor.
|
||||
*
|
||||
* @param string $message
|
||||
*/
|
||||
public function __construct(string $message)
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue