Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / IO / DirectoryNotFoundException.cs / 1 / DirectoryNotFoundException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: DirectoryNotFoundException ** ** ** Purpose: Exception for accessing a path that doesn't exist. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.IO { /* * Thrown when trying to access a directory that doesn't exist on disk. * From COM Interop, this exception is thrown for 2 HRESULTS: * the Win32 errorcode-as-HRESULT ERROR_PATH_NOT_FOUND (0x80070003) * and STG_E_PATHNOTFOUND (0x80030003). */ [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DirectoryNotFoundException : IOException { public DirectoryNotFoundException() : base(Environment.GetResourceString("Arg_DirectoryNotFoundException")) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: DirectoryNotFoundException ** ** ** Purpose: Exception for accessing a path that doesn't exist. ** ** ===========================================================*/ using System; using System.Runtime.Serialization; namespace System.IO { /* * Thrown when trying to access a directory that doesn't exist on disk. * From COM Interop, this exception is thrown for 2 HRESULTS: * the Win32 errorcode-as-HRESULT ERROR_PATH_NOT_FOUND (0x80070003) * and STG_E_PATHNOTFOUND (0x80030003). */ [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class DirectoryNotFoundException : IOException { public DirectoryNotFoundException() : base(Environment.GetResourceString("Arg_DirectoryNotFoundException")) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message) : base(message) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } public DirectoryNotFoundException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_DIRECTORYNOTFOUND); } protected DirectoryNotFoundException(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
- LicFileLicenseProvider.cs
- ColorConvertedBitmap.cs
- RSACryptoServiceProvider.cs
- PreviewPrintController.cs
- BufferAllocator.cs
- OleDbError.cs
- MenuAutomationPeer.cs
- relpropertyhelper.cs
- ElapsedEventArgs.cs
- ConstrainedDataObject.cs
- RuleDefinitions.cs
- ContextMenu.cs
- ListParaClient.cs
- CuspData.cs
- EnumType.cs
- ParseChildrenAsPropertiesAttribute.cs
- Trigger.cs
- HtmlInputPassword.cs
- LinearQuaternionKeyFrame.cs
- _ConnectionGroup.cs
- SchemaImporterExtension.cs
- Point3DCollection.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- SafeSystemMetrics.cs
- CollectionView.cs
- MgmtConfigurationRecord.cs
- TitleStyle.cs
- BitmapEffectInput.cs
- Graph.cs
- ToolStripButton.cs
- XPathMultyIterator.cs
- WorkflowMessageEventArgs.cs
- ConfigXmlElement.cs
- Ref.cs
- MarkupExtensionParser.cs
- CornerRadiusConverter.cs
- CqlWriter.cs
- SafeFileMappingHandle.cs
- DataFieldConverter.cs
- PrintDialog.cs
- CompilerInfo.cs
- RoutedUICommand.cs
- ZoomPercentageConverter.cs
- CodeTypeDeclarationCollection.cs
- RowsCopiedEventArgs.cs
- Request.cs
- SafeReversePInvokeHandle.cs
- TableChangeProcessor.cs
- OAVariantLib.cs
- CLSCompliantAttribute.cs
- PageTheme.cs
- ContentType.cs
- WindowsFormsLinkLabel.cs
- FrameDimension.cs
- XmlLoader.cs
- SystemTcpStatistics.cs
- XmlSchemaCompilationSettings.cs
- ActiveXHost.cs
- InstanceDescriptor.cs
- DependencyObject.cs
- OleDbException.cs
- UnmanagedMemoryStreamWrapper.cs
- WpfKnownType.cs
- Math.cs
- XPathArrayIterator.cs
- WebHttpBindingElement.cs
- EmptyStringExpandableObjectConverter.cs
- BooleanAnimationUsingKeyFrames.cs
- DataGridViewComboBoxEditingControl.cs
- DataViewSetting.cs
- CrossAppDomainChannel.cs
- TabPage.cs
- XmlSigningNodeWriter.cs
- ResourceLoader.cs
- RectKeyFrameCollection.cs
- ETagAttribute.cs
- TabletCollection.cs
- Win32PrintDialog.cs
- HttpContext.cs
- XmlBindingWorker.cs
- AnnotationDocumentPaginator.cs
- XmlCodeExporter.cs
- TransactionInterop.cs
- UITypeEditor.cs
- CodeNamespace.cs
- ListViewUpdateEventArgs.cs
- CalculatedColumn.cs
- LocalValueEnumerator.cs
- JsonStringDataContract.cs
- BindingNavigatorDesigner.cs
- ClientRoleProvider.cs
- MetricEntry.cs
- BamlLocalizationDictionary.cs
- Property.cs
- Int64.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- TrackingStringDictionary.cs
- WebBrowserBase.cs
- ArrayTypeMismatchException.cs
- SafeHandles.cs