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

namespace System {
	public class ArithmeticException : SystemException {

		public ArithmeticException() : base("Overflow or underflow in the arithmetic operation.") { }
		public ArithmeticException(string msg) : base(msg) { }

	}
}

#endif