public void NotCorruptedStateExceptions()
		{
			var ex1 = new ArgumentNullException();
			Assert.IsFalse(ex1.IsCorruptedStateException());

			var ex2 = new Exception();
			Assert.IsFalse(ex2.IsCorruptedStateException());
		}