case "oilsMethodException":
return new oilsMethodException().replaceNode( node );
+ case "oilsBrokenSession":
+ return new oilsBrokenSession().replaceNode( node );
+
case "oilsScalar":
return new oilsScalar().replaceNode( node );
}
}
+oilsBrokenSession.prototype = new oilsException();
+oilsBrokenSession.prototype.constructor = oilsBrokenSession;
+oilsBrokenSession.prototype.baseClass = oilsException.prototype.constructor;
+
+/** broken session exception */
+function oilsBrokenSession( status, statusCode ) {
+ if( status && statusCode ) {
+ this._initResponse( "oilsBrokenSession", status, statusCode );
+ }
+}
+
// -----------------------------------------------------------------------------
// oilsScalar