Skip to content

Instantly share code, notes, and snippets.

@Finglas
Last active May 7, 2016 10:16
Show Gist options
  • Save Finglas/b7341379033d951aa88d2b7ed28aaba5 to your computer and use it in GitHub Desktop.
Save Finglas/b7341379033d951aa88d2b7ed28aaba5 to your computer and use it in GitHub Desktop.
Custom Exception C#
public class BlogPostNotFoundException : Exception
{
public BlogPostNotFoundException(string message)
: base(message)
{
}
// Note some suggested overloads have been omitted.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment