CIRCNetwork.on263 Member

'try again'

Syntax

object.on263(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_263 (e)
{
/* Urgh, this one's a pain. We need to abort whatever we tried, and start
* it again if appropriate.
*
* Known causes of this message:
* - LIST, with or without a parameter.
*/
if (("_list" in this) && !this._list.done && (this._list.count == 0))
{
// We attempted a LIST, and we think it failed. :)
this._list.done = true;
this._list.error = e.decodeParam(2);
// Return early for this one if we're saving it.
if ("file" in this._list)
return true;
}
e.destMethod = "onUnknown";
e.destObject = this;
return true;
}