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
- TypedAsyncResult.cs
- ObjectListCommandsPage.cs
- X509SecurityTokenAuthenticator.cs
- FlagsAttribute.cs
- TextBoxBaseDesigner.cs
- TextTreeTextNode.cs
- ClientSideQueueItem.cs
- UpDownEvent.cs
- RadioButtonFlatAdapter.cs
- WindowsTokenRoleProvider.cs
- ObjectDataSourceMethodEventArgs.cs
- MenuItem.cs
- HtmlCommandAdapter.cs
- QilLoop.cs
- CharUnicodeInfo.cs
- EntityProxyFactory.cs
- BatchParser.cs
- BasicHttpMessageSecurity.cs
- IPAddressCollection.cs
- DataException.cs
- XmlEnumAttribute.cs
- sqlinternaltransaction.cs
- ChangePasswordDesigner.cs
- DataSourceView.cs
- Freezable.cs
- Maps.cs
- ScriptingSectionGroup.cs
- Object.cs
- CryptoProvider.cs
- LayoutSettings.cs
- ScopelessEnumAttribute.cs
- Switch.cs
- ObjectKeyFrameCollection.cs
- PositiveTimeSpanValidator.cs
- SafeLocalMemHandle.cs
- SimpleRecyclingCache.cs
- WorkflowDefinitionDispenser.cs
- PrintDialog.cs
- ColorAnimationUsingKeyFrames.cs
- ToolStripDropDownItemDesigner.cs
- ZipQueryOperator.cs
- ISessionStateStore.cs
- SupportsEventValidationAttribute.cs
- QueryRewriter.cs
- ExtendedPropertiesHandler.cs
- Vector3D.cs
- XamlTemplateSerializer.cs
- PlainXmlSerializer.cs
- SEHException.cs
- MeasureData.cs
- LogicalMethodInfo.cs
- MouseEventArgs.cs
- TextEditorTyping.cs
- UIElementIsland.cs
- ConfigurationManagerInternalFactory.cs
- RangeEnumerable.cs
- ResourcePool.cs
- StylusPointCollection.cs
- ActiveXHost.cs
- RowBinding.cs
- AutomationProperties.cs
- FastEncoder.cs
- XsltException.cs
- DataGridAddNewRow.cs
- JsonEnumDataContract.cs
- QueryOperator.cs
- HtmlProps.cs
- CodeAttachEventStatement.cs
- ModelUIElement3D.cs
- ProcessModuleCollection.cs
- XsdDataContractExporter.cs
- HelpEvent.cs
- BitmapEffectDrawing.cs
- MarshalDirectiveException.cs
- DocumentPropertiesDialog.cs
- ResourceType.cs
- WebPartHelpVerb.cs
- BulletedListDesigner.cs
- WorkflowRuntimeServiceElementCollection.cs
- OpenTypeMethods.cs
- EntityDataSourceContextCreatedEventArgs.cs
- MenuItemStyle.cs
- PersonalizationProviderHelper.cs
- RawStylusInputCustomDataList.cs
- MatrixCamera.cs
- FixedSOMElement.cs
- ExpressionParser.cs
- HttpAsyncResult.cs
- _FixedSizeReader.cs
- FileAuthorizationModule.cs
- LexicalChunk.cs
- ProjectionPruner.cs
- DbTransaction.cs
- Signature.cs
- CustomTypeDescriptor.cs
- InvariantComparer.cs
- WebPartZoneBase.cs
- FromReply.cs
- OdbcConnection.cs
- ScriptReference.cs