Skip to content

Commit 45ae18a

Browse files
authored
Merge pull request #44 from mpscholten/fix-exceptions
Fixed `InvalidValueException` being thrown instead of `NotFoundException`
2 parents 413da18 + accb47f commit 45ae18a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AbstractValueParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function required($invalidValueMessage = null, $notFoundMessage = null)
5555
$notFoundMessage = $this->config->getExceptionMessageFactory()->createNotFoundMessage($this->name);
5656
}
5757

58-
throw $this->config->getExceptionFactory()->createInvalidValueException($notFoundMessage);
58+
throw $this->config->getExceptionFactory()->createNotFoundException($notFoundMessage);
5959
}
6060

6161
return $this->value;

0 commit comments

Comments
 (0)