美文网首页
2018-08-06

2018-08-06

作者: 挨了挨了 | 来源:发表于2018-08-06 15:42 被阅读0次

/***

  • @class

  • 表示登录过程中发生的异常
    */
    var LoginError = (function () {
    function LoginError(type, message) {
    Error.call(this, message);
    this.type = type;
    this.message = message;
    }

    LoginError.prototype = new Error();
    LoginError.prototype.constructor = LoginError;

    return LoginError;
    })();

相关文章

网友评论

      本文标题:2018-08-06

      本文链接:https://www.haomeiwen.com/subject/hdlgvftx.html