User Tools

Site Tools


exception_template

Exception Template

[Serializable]
public class NewException : Exception
{
	public NewException ()
		: base()
	{
	}
 
	public NewException (string message)
		: base(message)
	{
	}
 
	public NewException (string message, Exception innerException)
		: base(message, innerException)
	{
	}
 
	protected NewException (SerializationInfo info, StreamingContext context)
		: base(info, context)
	{
	}
}
exception_template.txt · Last modified: 2017/01/01 20:05 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki