imiger-fork/sources/WebContent/js/exceptions/invalidArgumentException.js @ ba05f7dc
1 |
/**
|
---|---|
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 |
}
|