Newer
Older
DNA / corlib / System.Collections.Generic / KeyNotFoundException.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 392 bytes First commit
#if !LOCALTEST

using System;

namespace System.Collections.Generic {
	public class KeyNotFoundException : SystemException {

		public KeyNotFoundException() : base("The given key was not present in the dictionary.") { }

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

		public KeyNotFoundException(string message, Exception inner) : base(message, inner) { }

	}
}
#endif