Skip to content

Instantly share code, notes, and snippets.

@LwServices
Created October 4, 2019 06:04
Show Gist options
  • Save LwServices/dfe3f63d643579751a6a6be3e59d818c to your computer and use it in GitHub Desktop.
Save LwServices/dfe3f63d643579751a6a6be3e59d818c to your computer and use it in GitHub Desktop.
public class NetworkOnMainThreadException : ApplicationException
{
public NetworkOnMainThreadException()
{
}
public NetworkOnMainThreadException(string message)
: base(message)
{
}
public NetworkOnMainThreadException(string message, Exception inner)
: base(message, inner)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment