* @package oat\tao\model\actionQueue */ class ActionFullException extends \Exception { /** * @var integer */ protected $position; /** * ActionFullException constructor. * @param string $position * @param string $message * @param int $code * @param $previous */ public function __construct($position, $message = "", $code = 0, $previous = null) { parent::__construct($message, $code, $previous); $this->position = $position; } /** * @return integer */ public function getPosition() { return $this->position; } }