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

namespace System.IO {
	public class FileNotFoundException : IOException {

		public FileNotFoundException(string msg) : base(msg) { }

	}
}

#endif