Created
October 4, 2019 06:04
-
-
Save LwServices/dfe3f63d643579751a6a6be3e59d818c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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