Created
September 6, 2021 16:02
-
-
Save onurinanc/9fa6c72eb5a802ce692de341a246f2ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try { | |
| let car = createCar ('{ "color": black-yellow}'); | |
| } catch (err) { | |
| if (err instanceof ValidationError) { | |
| alert("Invalid data: " + err.message); | |
| alert(err.name); // PropertyRequiredError | |
| alert(err.property); // name | |
| } else { | |
| throw err; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment