20
NoOne
6y

Of course the common people gonna understand what went wrong!!

Comments
  • 2
    As an absolute noob in Java... What did go wrong there? I sometimes see this on the Reddit app and it makes me curious.
  • 1
    @Kirk from what I guess (not a java dev) the code took too long to exectute. Or the GET request timed out.
  • 1
    @sigfried that sounds correct.My internet connection was slow. :D
  • 2
    @Kirk as a Java dev: The first part says that an error has been thrown by a thread while executing, the second part says that a timeout has occured in volley, quick google search says that volley is a networking library so in conclusion: the connection has timed out :)
  • 1
    It is a (unwritten - maybe... maybe it is in the official docs) rule to name everything descriptively in Java so you know what eveything does. Usually I don't mind naming something like this: IConcurrentDatabaseAdapter because the IDE will autocomplete it (btw the "I" at the beginning tells me it is an interface - basically a template for classes)
  • 2
    @sigfried java code is not terminated when it takes too long, unless you absolutely need the thread to exit you just wait for it... otherwise you kill it and that would be a different error... something like ThreadDeath
  • 0
    Oh they use volley, that's what went wrong...
Add Comment