Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / InsufficientExecutionStackException.cs / 1305376 / InsufficientExecutionStackException.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*==============================================================================
**
** Class: InsufficientExecutionStackException
**
**
** Purpose: The exception class used when there is insufficient execution stack
** to allow most Framework methods to execute.
**
**
=============================================================================*/
namespace System {
using System;
using System.Runtime.Serialization;
[Serializable]
public sealed class InsufficientExecutionStackException : SystemException
{
public InsufficientExecutionStackException()
: base(Environment.GetResourceString("Arg_InsufficientExecutionStackException"))
{
SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK);
}
public InsufficientExecutionStackException(String message)
: base(message)
{
SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK);
}
public InsufficientExecutionStackException(String message, Exception innerException)
: base(message, innerException)
{
SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK);
}
private InsufficientExecutionStackException(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
- HiddenField.cs
- ReceiveActivityDesigner.cs
- Int32CollectionValueSerializer.cs
- HwndSourceKeyboardInputSite.cs
- EncoderReplacementFallback.cs
- WebPartEventArgs.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- HtmlInputSubmit.cs
- BridgeDataReader.cs
- BamlBinaryReader.cs
- ViewPort3D.cs
- ImageDrawing.cs
- XmlTextReader.cs
- ValidatorUtils.cs
- AnimationClock.cs
- ConfigXmlComment.cs
- BinaryQueryOperator.cs
- LogicalExpr.cs
- FixedHighlight.cs
- ObjectParameterCollection.cs
- StructuredTypeEmitter.cs
- _NTAuthentication.cs
- Socket.cs
- QuadraticBezierSegment.cs
- ControlValuePropertyAttribute.cs
- RouteData.cs
- storepermissionattribute.cs
- Metadata.cs
- HttpCapabilitiesSectionHandler.cs
- ReaderWriterLockWrapper.cs
- AspNetHostingPermission.cs
- tooltip.cs
- UriExt.cs
- MailAddressCollection.cs
- _ConnectionGroup.cs
- CreateUserWizard.cs
- TextTreePropertyUndoUnit.cs
- DictionaryManager.cs
- TypeToken.cs
- NonSerializedAttribute.cs
- _LocalDataStoreMgr.cs
- CodeMemberProperty.cs
- SoapElementAttribute.cs
- ValidationManager.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ProcessHostFactoryHelper.cs
- EventListener.cs
- Root.cs
- PropertyChangingEventArgs.cs
- CharConverter.cs
- DataRowChangeEvent.cs
- NullableConverter.cs
- TreeChangeInfo.cs
- SqlReorderer.cs
- RepeatButton.cs
- DbDataAdapter.cs
- DesignerHost.cs
- ProcessHostMapPath.cs
- Int32AnimationUsingKeyFrames.cs
- Condition.cs
- Parameter.cs
- SqlFactory.cs
- DeferredReference.cs
- SQLBinaryStorage.cs
- DynamicPropertyHolder.cs
- JsonFormatReaderGenerator.cs
- exports.cs
- TreeViewImageIndexConverter.cs
- _TransmitFileOverlappedAsyncResult.cs
- ArgumentDesigner.xaml.cs
- ErrorHandler.cs
- MemberExpression.cs
- TextBox.cs
- WorkflowRuntimeService.cs
- ObjRef.cs
- SqlUDTStorage.cs
- DataGridViewColumnEventArgs.cs
- HtmlControl.cs
- SchemaCreator.cs
- ConfigurationSettings.cs
- CodeArrayIndexerExpression.cs
- ThemeDirectoryCompiler.cs
- SafeFileMappingHandle.cs
- CodeTypeReferenceExpression.cs
- GridErrorDlg.cs
- WebErrorHandler.cs
- TCEAdapterGenerator.cs
- EdmConstants.cs
- AdPostCacheSubstitution.cs
- ConfigurationPermission.cs
- ProcessActivityTreeOptions.cs
- AuthStoreRoleProvider.cs
- MetadataItemEmitter.cs
- MemoryResponseElement.cs
- EncryptedType.cs
- ButtonBaseAdapter.cs
- DesignerActionMethodItem.cs
- TextModifierScope.cs
- MSAANativeProvider.cs
- XmlSignatureManifest.cs