Language: C#
Code template for a custom Exception
using System; using System.Runtime.Serialization; public class ExceptionTemplate : Exception { public ExceptionTemplate() { } public ExceptionTemplate(string message) : base(message) { } public ExceptionTemplate(string message, Exception innerException) : base(message, innerException) { } public ExceptionTemplate(SerializationInfo info, StreamingContext context) : base(info, context) { } }
Tags:
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

