You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
readonly class Product
{
public function __construct(
public Translation $name,
public ?Translation $description
) {}
}
readonly class Translation
{
/** @param array<string, string> $values [language => text] **/
public function __construct(public string $values) {
if (!$values) { // Any validation here
throw new CustomException('You need to provide translations!');
}
}
}
I have configured ->filterExceptions(...) to process all thrown CustomException objects into proper Valinor errors.
Now, I'm trying to create a Product object from JSON. If I pass an empty array as mainTitle, I receive a MappingError with my custom error for this field as expected. However, if I pass the same invalid value as subtitle, I get a generic CannotResolveTypeFromUnion error that doesn't provide any useful information.
Is there any solution for this problem?
The text was updated successfully, but these errors were encountered:
Let's say I work with classes like:
I have configured ->filterExceptions(...) to process all thrown CustomException objects into proper Valinor errors.
Now, I'm trying to create a Product object from JSON. If I pass an empty array as mainTitle, I receive a MappingError with my custom error for this field as expected. However, if I pass the same invalid value as subtitle, I get a generic CannotResolveTypeFromUnion error that doesn't provide any useful information.
Is there any solution for this problem?
The text was updated successfully, but these errors were encountered: