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

namespace System {
	public class FormatException : SystemException {
		public FormatException() : base("Invalid Format.") { }
		public FormatException(string msg) : base(msg) { }
	}
}

#endif