Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / System.Runtime.DurableInstancing / System / Runtime / FatalException.cs / 1305376 / FatalException.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Runtime { using System; using System.Runtime.Serialization; [Serializable] class FatalException : SystemException { public FatalException() { } public FatalException(string message) : base(message) { } public FatalException(string message, Exception innerException) : base(message, innerException) { // This can't throw something like ArgumentException because that would be worse than // throwing the fatal exception that was requested. Fx.Assert(innerException == null || !Fx.IsFatal(innerException), "FatalException can't be used to wrap fatal exceptions."); } protected FatalException(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
- ServicesUtilities.cs
- DesignerAutoFormatCollection.cs
- Point4D.cs
- HttpContextBase.cs
- CodeExpressionStatement.cs
- ThicknessAnimation.cs
- SSmlParser.cs
- SignedPkcs7.cs
- TableLayoutPanelResizeGlyph.cs
- PlainXmlWriter.cs
- SpeechDetectedEventArgs.cs
- ExpressionContext.cs
- SqlVersion.cs
- RegistrySecurity.cs
- EntitySqlQueryCacheEntry.cs
- OutputCacheModule.cs
- InvokeCompletedEventArgs.cs
- CodeDomDecompiler.cs
- Container.cs
- SqlCacheDependency.cs
- COM2ICategorizePropertiesHandler.cs
- MetadataCache.cs
- FusionWrap.cs
- ToolBarDesigner.cs
- StackOverflowException.cs
- SystemColorTracker.cs
- RootBuilder.cs
- DocumentScope.cs
- dsa.cs
- ReadOnlyDataSourceView.cs
- IconHelper.cs
- TextEffectCollection.cs
- OpenTypeLayoutCache.cs
- StandardMenuStripVerb.cs
- handlecollector.cs
- ParentControlDesigner.cs
- GridViewRowCollection.cs
- SimpleColumnProvider.cs
- BitmapEffectDrawingContextWalker.cs
- MsmqIntegrationValidationBehavior.cs
- ExpressionVisitorHelpers.cs
- IntPtr.cs
- EventSetter.cs
- HttpHeaderCollection.cs
- BitmapCache.cs
- ResourceExpressionBuilder.cs
- milrender.cs
- Errors.cs
- SecurityDescriptor.cs
- AnimationClock.cs
- RectIndependentAnimationStorage.cs
- SqlConnectionHelper.cs
- XmlSignatureManifest.cs
- EncoderParameter.cs
- EnumerationRangeValidationUtil.cs
- coordinatorscratchpad.cs
- ValidationErrorEventArgs.cs
- PersonalizableAttribute.cs
- Subtree.cs
- WebHttpSecurityModeHelper.cs
- ThemeDictionaryExtension.cs
- StringFreezingAttribute.cs
- ObjectTokenCategory.cs
- SmiContext.cs
- TraceUtility.cs
- OutputCacheProviderCollection.cs
- RemoteWebConfigurationHostStream.cs
- DataGridViewCellStyleConverter.cs
- StringWriter.cs
- QuotedPrintableStream.cs
- XmlNodeWriter.cs
- QualificationDataAttribute.cs
- GB18030Encoding.cs
- SpellerInterop.cs
- XmlSchemaChoice.cs
- IpcClientChannel.cs
- WebFaultClientMessageInspector.cs
- CreateUserWizard.cs
- SearchForVirtualItemEventArgs.cs
- _DomainName.cs
- smtpconnection.cs
- XhtmlStyleClass.cs
- ErrorCodes.cs
- TypeToArgumentTypeConverter.cs
- AssemblyAssociatedContentFileAttribute.cs
- HtmlFormParameterWriter.cs
- FormView.cs
- BuildProviderUtils.cs
- QueryExpr.cs
- DecoderReplacementFallback.cs
- CurrencyWrapper.cs
- CodeSnippetStatement.cs
- ResourceContainer.cs
- KeyFrames.cs
- AggregatePushdown.cs
- CompModSwitches.cs
- unsafenativemethodsother.cs
- ObjectQuery_EntitySqlExtensions.cs
- PrintSystemException.cs
- BookmarkNameHelper.cs