0
0
mirror of https://github.com/nextcloud/server.git synced 2024-11-14 20:36:50 +00:00
nextcloud_server/lib/public/AppFramework/Http/ParameterOutOfRangeException.php
Andy Scherzinger dae7c159f7
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-24 13:11:22 +02:00

63 lines
1.0 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\AppFramework\Http;
/**
* @since 29.0.0
*/
class ParameterOutOfRangeException extends \OutOfRangeException {
/**
* @since 29.0.0
*/
public function __construct(
protected string $parameterName,
protected int $actualValue,
protected int $minValue,
protected int $maxValue,
) {
parent::__construct(
sprintf(
'Parameter %s must be between %d and %d',
$this->parameterName,
$this->minValue,
$this->maxValue,
)
);
}
/**
* @since 29.0.0
*/
public function getParameterName(): string {
return $this->parameterName;
}
/**
* @since 29.0.0
*/
public function getActualValue(): int {
return $this->actualValue;
}
/**
* @since 29.0.0
*/
public function getMinValue(): int {
return $this->minValue;
}
/**
* @since 29.0.0
*/
public function getMaxValue(): int {
return $this->maxValue;
}
}