Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / OverflowException.cs / 1305376 / OverflowException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: OverflowException ** ** ** Purpose: Exception class for Arthimatic Overflows. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public class OverflowException : ArithmeticException { public OverflowException() : base(Environment.GetResourceString("Arg_OverflowException")) { SetErrorCode(__HResults.COR_E_OVERFLOW); } public OverflowException(String message) : base(message) { SetErrorCode(__HResults.COR_E_OVERFLOW); } public OverflowException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_OVERFLOW); } [System.Security.SecuritySafeCritical] // auto-generated protected OverflowException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TagPrefixCollection.cs
- CodeAttributeDeclarationCollection.cs
- ConfigurationSectionCollection.cs
- XmlnsCache.cs
- PropertyValueChangedEvent.cs
- EventLogInternal.cs
- StaticDataManager.cs
- AsyncPostBackTrigger.cs
- XsdValidatingReader.cs
- FocusWithinProperty.cs
- OrCondition.cs
- UDPClient.cs
- LineMetrics.cs
- DefaultTextStore.cs
- FactoryMaker.cs
- AsyncOperation.cs
- MouseActionValueSerializer.cs
- Listen.cs
- CodeGen.cs
- SignatureConfirmationElement.cs
- Attributes.cs
- IndentTextWriter.cs
- XPathItem.cs
- XmlDataSourceView.cs
- BitmapCacheBrush.cs
- CardSpaceSelector.cs
- RecommendedAsConfigurableAttribute.cs
- XamlNamespaceHelper.cs
- Label.cs
- WebBrowserHelper.cs
- EncryptedKey.cs
- PropertyIdentifier.cs
- DockPattern.cs
- ImageSource.cs
- FunctionUpdateCommand.cs
- GridViewSortEventArgs.cs
- DesignerSerializationOptionsAttribute.cs
- SqlBooleanizer.cs
- RegexWorker.cs
- SerializationInfoEnumerator.cs
- XmlElementList.cs
- TreeViewItemAutomationPeer.cs
- LinkedResourceCollection.cs
- WebRequestModulesSection.cs
- TextElementEnumerator.cs
- StatusBar.cs
- Path.cs
- TransportSecurityHelpers.cs
- Canvas.cs
- DiscoveryDocumentSearchPattern.cs
- DispatcherSynchronizationContext.cs
- SystemIPv6InterfaceProperties.cs
- PersonalizationEntry.cs
- BulletedListEventArgs.cs
- WebPartCatalogCloseVerb.cs
- ConfigXmlText.cs
- PerformanceCounterCategory.cs
- SystemWebCachingSectionGroup.cs
- FontFamily.cs
- DataGridViewBand.cs
- Rect3DConverter.cs
- TypeUnloadedException.cs
- ComplexTypeEmitter.cs
- Cell.cs
- DataObject.cs
- GatewayIPAddressInformationCollection.cs
- PerformanceCounterPermissionAttribute.cs
- PassportAuthentication.cs
- VectorKeyFrameCollection.cs
- PointLight.cs
- InvalidWMPVersionException.cs
- SettingsBase.cs
- PrintControllerWithStatusDialog.cs
- AdapterUtil.cs
- _AuthenticationState.cs
- SvcMapFileSerializer.cs
- MobileUserControl.cs
- WindowsFormsSectionHandler.cs
- DataKeyPropertyAttribute.cs
- FieldNameLookup.cs
- HttpDictionary.cs
- ChineseLunisolarCalendar.cs
- ISFClipboardData.cs
- CommandHelper.cs
- AssemblyInfo.cs
- QilScopedVisitor.cs
- ConfigXmlWhitespace.cs
- OracleCommandBuilder.cs
- XmlDownloadManager.cs
- Menu.cs
- UserNameSecurityTokenParameters.cs
- Message.cs
- DrawingVisualDrawingContext.cs
- RichTextBoxConstants.cs
- CheckBoxField.cs
- DrawingCollection.cs
- DSASignatureFormatter.cs
- SQLConvert.cs
- versioninfo.cs
- SHA384Cng.cs