You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now lots of methods are made in the way where you must check for exceptions in order to everything work fine. It's not a big deal though since you always try-catch your code using SDK because it can fail at any moment due to network conditions. However, using exceptions as a result doesn't give a clear contract of the method when looking at signature. Who will think when using users.edit to check whether username were occupied or not? If we make this with sealed, hopefully, this will be more clear and obvious.
The text was updated successfully, but these errors were encountered:
Now lots of methods are made in the way where you must check for exceptions in order to everything work fine. It's not a big deal though since you always try-catch your code using SDK because it can fail at any moment due to network conditions. However, using exceptions as a result doesn't give a clear contract of the method when looking at signature. Who will think when using users.edit to check whether username were occupied or not? If we make this with sealed, hopefully, this will be more clear and obvious.
The text was updated successfully, but these errors were encountered: