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

namespace System.IO {
	public class IOException : SystemException {

		public IOException() : base("I/O Error") { }
		public IOException(string message) : base(message) { }

	}
}

#endif