Added base files, with the basic ability to add/remove variables from the Runtime.

This commit is contained in:
Netkas 2022-12-23 00:10:02 -05:00
parent aef02c4bff
commit 7e5207c45a
19 changed files with 906 additions and 0 deletions

View 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);
}
}