Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot handle errors properly using union type #624

Open
szado opened this issue Apr 4, 2025 · 0 comments
Open

Cannot handle errors properly using union type #624

szado opened this issue Apr 4, 2025 · 0 comments

Comments

@szado
Copy link

szado commented Apr 4, 2025

Let's say I work with classes like:

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant