function Exception361 (msg)
{
	this.name = 'Exception361';

	if(typeof msg == "string" && msg.length != 0) this.message = msg;
	else this.message = 'Error-Fehlercode: 361!';

  	this.toString = function () { return this.message }
}
