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

namespace System {
	public class IndexOutOfRangeException : SystemException {

		public IndexOutOfRangeException() : base("Array index is out of range.") { }

		public IndexOutOfRangeException(string message) : base(message) { }

		public IndexOutOfRangeException(string message, Exception innerException)
			: base(message, innerException) {
		}

	}
}

#endif