class Yoba:
	def __enter__(self):
		print("voshli")
		return self
	def __exit__(self, *exc_info):
		print("vishli")
try:
	with Yoba():
		raise Exception("SOSI HOOY!")
except Exception as e:
	print(e)