In C# how do I define my own Exceptions?
To define:
public class SomeException : Exception { // Add your own constructors and properties here. }
To throw:
throw new SomeException();