Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / OverflowException.cs / 1 / 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); } protected OverflowException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BrowserCapabilitiesCodeGenerator.cs
- GeometryValueSerializer.cs
- OutputBuffer.cs
- SecurityTokenContainer.cs
- RelOps.cs
- DetailsViewDesigner.cs
- SafeViewOfFileHandle.cs
- ProfileGroupSettings.cs
- MenuItem.cs
- EncryptedHeader.cs
- CheckedPointers.cs
- SecurityTokenReferenceStyle.cs
- RecognizerStateChangedEventArgs.cs
- X509Utils.cs
- AbandonedMutexException.cs
- WebZone.cs
- ConfigurationSectionGroup.cs
- TreeNode.cs
- CodePageUtils.cs
- DocumentGrid.cs
- JobInputBins.cs
- X509ChainElement.cs
- XmlDataDocument.cs
- SmiSettersStream.cs
- IdnElement.cs
- XmlSchemaSimpleTypeUnion.cs
- SqlMethodCallConverter.cs
- ByeMessageApril2005.cs
- TagPrefixCollection.cs
- PerfService.cs
- InvalidDataContractException.cs
- DesignerActionKeyboardBehavior.cs
- StringCollection.cs
- HttpWebRequest.cs
- SettingsPropertyCollection.cs
- InvalidCastException.cs
- ToolboxItemCollection.cs
- ThicknessAnimation.cs
- OwnerDrawPropertyBag.cs
- AutoCompleteStringCollection.cs
- Parameter.cs
- OleDbCommandBuilder.cs
- ExportOptions.cs
- MdiWindowListStrip.cs
- LinearGradientBrush.cs
- RectIndependentAnimationStorage.cs
- MinimizableAttributeTypeConverter.cs
- TransformConverter.cs
- DataPagerFieldCollection.cs
- RowToFieldTransformer.cs
- SoapRpcMethodAttribute.cs
- LinqDataSourceStatusEventArgs.cs
- XmlWrappingReader.cs
- CrossContextChannel.cs
- IndexerReference.cs
- DependsOnAttribute.cs
- SelectingProviderEventArgs.cs
- SemaphoreSecurity.cs
- ContextQuery.cs
- PointAnimationClockResource.cs
- XamlTypeMapper.cs
- X509CertificateTrustedIssuerElementCollection.cs
- PathParser.cs
- XsltQilFactory.cs
- Event.cs
- ArrayTypeMismatchException.cs
- BinaryOperationBinder.cs
- OleAutBinder.cs
- DataGridItem.cs
- OdbcCommand.cs
- wgx_sdk_version.cs
- SQLByte.cs
- SqlDataSourceEnumerator.cs
- MachineSettingsSection.cs
- DefaultBindingPropertyAttribute.cs
- StateMachineSubscription.cs
- ResourcePool.cs
- SQLString.cs
- CardSpaceSelector.cs
- AbandonedMutexException.cs
- MatrixCamera.cs
- HandlerFactoryWrapper.cs
- SecurityManager.cs
- QueryPageSettingsEventArgs.cs
- clipboard.cs
- DispatcherTimer.cs
- BlurBitmapEffect.cs
- InputProcessorProfiles.cs
- VectorAnimation.cs
- DesignerDataTableBase.cs
- StronglyTypedResourceBuilder.cs
- ValueHandle.cs
- DynamicControl.cs
- loginstatus.cs
- BamlTreeMap.cs
- CodeTryCatchFinallyStatement.cs
- MergePropertyDescriptor.cs
- Int32CollectionValueSerializer.cs
- LinqDataSourceHelper.cs
- DataGridViewCellErrorTextNeededEventArgs.cs