summaryrefslogtreecommitdiff
path: root/vendor/wikimedia/assert/src/ParameterAssertionException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/wikimedia/assert/src/ParameterAssertionException.php')
-rw-r--r--vendor/wikimedia/assert/src/ParameterAssertionException.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/vendor/wikimedia/assert/src/ParameterAssertionException.php b/vendor/wikimedia/assert/src/ParameterAssertionException.php
new file mode 100644
index 00000000..cb42cc6f
--- /dev/null
+++ b/vendor/wikimedia/assert/src/ParameterAssertionException.php
@@ -0,0 +1,49 @@
+<?php
+
+namespace Wikimedia\Assert;
+
+use InvalidArgumentException;
+
+/**
+ * Exception indicating that an parameter assertion failed.
+ * This generally means a disagreement between the caller and the implementation of a function.
+ *
+ * @license MIT
+ * @author Daniel Kinzler
+ * @copyright Wikimedia Deutschland e.V.
+ */
+class ParameterAssertionException extends InvalidArgumentException implements AssertionException {
+
+ /**
+ * @var string
+ */
+ private $parameterName;
+
+ /**
+ * @param string $parameterName
+ * @param string $description
+ *
+ * @throws ParameterTypeException
+ */
+ public function __construct( $parameterName, $description ) {
+ if ( !is_string( $parameterName ) ) {
+ throw new ParameterTypeException( 'parameterName', 'string' );
+ }
+
+ if ( !is_string( $description ) ) {
+ throw new ParameterTypeException( 'description', 'string' );
+ }
+
+ parent::__construct( "Bad value for parameter $parameterName: $description" );
+
+ $this->parameterName = $parameterName;
+ }
+
+ /**
+ * @return string
+ */
+ public function getParameterName() {
+ return $this->parameterName;
+ }
+
+}