其他分享
首页 > 其他分享> > Fiori里的exception继承

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;

在这里插入图片描述

标签:jQuery,exception,继承,Exception,Fiori,ParseException,message,prototype
来源: https://blog.csdn.net/i042416/article/details/100809269