1 jls.loader.provide('jls.lang.IllegalArgumentException'); 2 3 /** 4 * @augments jls.lang.Exception 5 * @class Thrown to indicate that a method has been passed an illegal or inappropriate argument. 6 */ 7 jls.lang.IllegalArgumentException = jls.lang.Class.create(jls.lang.Exception, /** @lends jls.lang.IllegalArgumentException.prototype */ 8 { 9 initialize : function($super, message, cause) { 10 $super(message, cause); 11 } 12 }); 13