Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void Application_Error(object sender, EventArgs e)
  2. {
  3. Exception exc = Server.GetLastError();
  4.  
  5. if (exc is StackOverflowException)
  6. {
  7. // Log stacktrace, etc.
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement