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