function $error($desc)
{
	this.desc = $desc || "Unknown Error";
}

$error.prototype.toString = function()
{
	return this.desc;
}
