﻿class System.Exception
	java Exception 
	python Exception
	php Exception
	js Error
	rust NString

property get string Message
	java {!}.getMessage()
	python {!}.__str__()
	php {!}->getMessage()
	js {!}.message
	rust {!}

.ctor()
	java =
	python =
	php =
	js =
	rust NString::null()

.ctor(string)
	java =
	python Utils.newException({0}, None)
	php =
	js =
	rust {0}

.ctor(string, Exception)
	java =
	python Utils.newException({0}, {1})
	php new Exception({0}, 0, {1})
	js new Error({0})
