Skip to content

Instantly share code, notes, and snippets.

@onurinanc
Created September 6, 2021 16:02
Show Gist options
  • Select an option

  • Save onurinanc/9fa6c72eb5a802ce692de341a246f2ff to your computer and use it in GitHub Desktop.

Select an option

Save onurinanc/9fa6c72eb5a802ce692de341a246f2ff to your computer and use it in GitHub Desktop.
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