fixed TypeError: throw() got an unexpected keyword argument 'exception'
diff --git a/erpnext/regional/doctype/gst_settings/gst_settings.py b/erpnext/regional/doctype/gst_settings/gst_settings.py
index e8c167d..5edb172 100644
--- a/erpnext/regional/doctype/gst_settings/gst_settings.py
+++ b/erpnext/regional/doctype/gst_settings/gst_settings.py
@@ -70,7 +70,7 @@
 		email_id = default_email_id
 
 	if not email_id:
-		frappe.throw('Email not found in default contact', exception=EmailMissing)
+		frappe.throw('Email not found in default contact', exc=EmailMissing)
 
 	if sent_to and email_id in sent_to:
 		return
@@ -95,4 +95,3 @@
 	)
 
 	return email_id
-