rtex-engine/src/RTEX/Exceptions/Core/UnsupportedInstructionException.php

16 lines
357 B
PHP
Raw Normal View History

<?php
namespace RTEX\Exceptions\Core;
class UnsupportedInstructionException extends \Exception
{
/**
* UnsupportedInstructionException constructor.
*
* @param string $message
*/
public function __construct(string $message)
{
parent::__construct($message);
}
}