Projekt

Obecné

Profil

Stáhnout (252 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 1e2b2c27 Tomáš Šimandl
/**
2
 * Exception thrown when an argument of the function call is not valid.
3
 * @constructor
4
 * @param {string} message Message of the exception.
5
 */
6
function InvalidArgumentException(message) {
7
	/** @prop {string} message */
8
	this.message = message;
9
}