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
- ScriptResourceAttribute.cs
- ContractAdapter.cs
- _OSSOCK.cs
- DataServiceQueryContinuation.cs
- DataSourceCache.cs
- PropertyMappingExceptionEventArgs.cs
- AutoGeneratedFieldProperties.cs
- WebContext.cs
- ObjectStateManager.cs
- SystemWebSectionGroup.cs
- ValueTable.cs
- UrlAuthorizationModule.cs
- DataFormats.cs
- NativeMethods.cs
- FixedStringLookup.cs
- EntityParameterCollection.cs
- RadioButtonStandardAdapter.cs
- BoundPropertyEntry.cs
- WebPartDisplayModeCollection.cs
- UInt32Storage.cs
- NameObjectCollectionBase.cs
- FixedDocument.cs
- SQlBooleanStorage.cs
- objectresult_tresulttype.cs
- RuleInfoComparer.cs
- HierarchicalDataBoundControlAdapter.cs
- CharAnimationUsingKeyFrames.cs
- ColumnMapVisitor.cs
- Exceptions.cs
- WindowsStartMenu.cs
- XmlQueryContext.cs
- XPathBinder.cs
- WaveHeader.cs
- SizeIndependentAnimationStorage.cs
- ThumbButtonInfoCollection.cs
- TableCell.cs
- WindowsIdentity.cs
- EntityDesignerUtils.cs
- RegexGroup.cs
- webproxy.cs
- Vector3DCollectionConverter.cs
- DecodeHelper.cs
- LinearKeyFrames.cs
- _ProxyChain.cs
- WindowsAuthenticationModule.cs
- Dispatcher.cs
- CfgSemanticTag.cs
- BooleanProjectedSlot.cs
- WebPartDescriptionCollection.cs
- HandoffBehavior.cs
- Tuple.cs
- View.cs
- TransactionManager.cs
- DataRecordInfo.cs
- IPipelineRuntime.cs
- Region.cs
- InteropBitmapSource.cs
- TreeNode.cs
- RankException.cs
- ReachIDocumentPaginatorSerializerAsync.cs
- ObjectHandle.cs
- Util.cs
- WebPartPersonalization.cs
- Geometry3D.cs
- SiteIdentityPermission.cs
- EraserBehavior.cs
- DecoderNLS.cs
- RayHitTestParameters.cs
- SafeFileMappingHandle.cs
- XPathItem.cs
- PropertyChangedEventArgs.cs
- AddValidationError.cs
- BindUriHelper.cs
- DecimalConstantAttribute.cs
- CodeIdentifier.cs
- BitmapCacheBrush.cs
- DesignerSelectionListAdapter.cs
- HttpCapabilitiesEvaluator.cs
- SHA1CryptoServiceProvider.cs
- PeerApplicationLaunchInfo.cs
- CancellableEnumerable.cs
- MouseCaptureWithinProperty.cs
- FunctionDetailsReader.cs
- Update.cs
- StickyNoteHelper.cs
- DataGridTable.cs
- TextServicesManager.cs
- FormClosedEvent.cs
- PeerNameRegistration.cs
- Journal.cs
- TextEditorLists.cs
- _IPv6Address.cs
- ModelFunction.cs
- ThousandthOfEmRealDoubles.cs
- AnimationClockResource.cs
- Models.cs
- CodeGotoStatement.cs
- InternalDispatchObject.cs
- ReaderWriterLock.cs
- CellPartitioner.cs