12 references to FormatException
mscorlib (4)
system\guid.cs (3)
208return new FormatException(Environment.GetResourceString(m_failureMessageID), m_innerException); 796throw new FormatException(Environment.GetResourceString("Format_GuidUnrecognized"), ex); 842throw new FormatException(Environment.GetResourceString("Format_GuidUnrecognized"), ex);
system\reflection\customattributeformatexception.cs (1)
34public CustomAttributeFormatException(String message, Exception inner) : base(message, inner) {
System (2)
net\System\Net\cookieexception.cs (1)
26internal CookieException(string message, Exception inner) : base(message, inner) {
net\System\URIFormatException.cs (1)
34public UriFormatException(string textString, Exception e) : base(textString, e) {
System.Data (1)
fx\src\data\System\Data\Common\AdapterUtil.cs (1)
1605e = new FormatException(message, inner);
System.IdentityModel (1)
System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
448new FormatException(string.Format(CultureInfo.InvariantCulture,
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Formatter.cs (2)
359throw new FormatException(ex.Message, ex); 440throw new FormatException(ex.InnerException.Message, ex.InnerException);
WindowsBase (2)
Base\System\IO\FileFormatException.cs (2)
56: base(message, innerException) 123: base(message, innerException)