Newer
Older
DNA / corlib / System / OverflowException.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 221 bytes First commit
#if !LOCALTEST

namespace System {
	public class OverflowException : ArithmeticException {

		public OverflowException() : base("Number overflow.") { }
		public OverflowException(string msg) : base(msg) { }

	}
}

#endif