Fiori里的exception继承

Exception是基类,所有的FormatException,ValidateException通过下列方式继承ziException:

var ParseException = function(message) {
  this.name = "ParseException";
  this.message = message;
 };
 ParseException.prototype = jQuery.sap.newObject(Exception.prototype);
 return ParseException;

Fiori里的exception继承

上一篇:SAP UI5 ushell-lib


下一篇:如何处理My lead fiori应用的buffer问题