File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,21 +28,21 @@ def payments(self) -> BraspagPaymentsServices:
2828 def split (self ) -> BraspagSplitServices :
2929 if not self ._split :
3030 raise Exception ("Split app is not initialized, "
31- "please define SplitCredentials and call init () method first " )
31+ "please add it to Braspag instance using add_split () method" )
3232 return self ._split
3333
3434 @property
3535 def emv3ds (self ) -> BraspagEMV3DSServices :
3636 if not self ._emv3ds :
3737 raise Exception ("EMV3DS app is not initialized, "
38- "please define EMV3DSCredentials and call init () method first " )
38+ "please add it to Braspag instance using add_emv3ds () method" )
3939 return self ._emv3ds
4040
4141 @property
4242 def sop (self ) -> BraspagSOPServices :
4343 if not self ._sop :
4444 raise Exception ("SOP app is not initialized, "
45- "please define SilentOrderPostCredentials and call init () method first " )
45+ "please add it to Braspag instance using add_sop () method" )
4646 return self ._sop
4747
4848 def add_split (self , split_credentials : SplitCredentials ):
You can’t perform that action at this time.
0 commit comments