Throw "Error", not "Exception", in merge.xml

This commit is contained in:
Dan Stillman 2016-07-21 13:15:33 -04:00
parent 01ba8dfc34
commit 3b71ec5410

View file

@ -71,7 +71,7 @@
break; break;
default: default:
throw new Exception(`Unsupported merge object type '${type}'`); throw new Error(`Unsupported merge object type '${type}'`);
} }
this._type = val; this._type = val;
@ -98,7 +98,7 @@
<body> <body>
<![CDATA[ <![CDATA[
if (this._data.left.deleted && this._data.right.deleted) { if (this._data.left.deleted && this._data.right.deleted) {
throw new Exception("'left' and 'right' cannot both be deleted"); throw new Error("'left' and 'right' cannot both be deleted");
} }
// Check for note or attachment // Check for note or attachment