Global.MailException (name)
constructor function for MailException objects

  • Parameter String:
    Name of the message
Sourcecode in Global/objectFunctions.js:
1:   function MailException(name) {
2:      this.name = name;
3:      this.toString = function() {
4:         return getMessage("error." + this.name);
5:      }
6:      return this;
7:   }