Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / ObjectNotFoundException.cs / 1305376 / ObjectNotFoundException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....], nkline //--------------------------------------------------------------------- namespace System.Data { using System; using System.Data; using System.Runtime.Serialization; using System.Security.Permissions; ////// This exception is thrown when a requested object is not found in the store. /// [Serializable] public sealed class ObjectNotFoundException : DataException { ////// Initializes a new instance of ObjectNotFoundException /// public ObjectNotFoundException() : base() { } ////// Initializes a new instance of ObjectNotFoundException /// /// public ObjectNotFoundException(string message) : base(message) { } ////// Constructor that takes a message and an inner exception /// /// /// public ObjectNotFoundException(string message, Exception innerException) : base(message, innerException) { } ////// Initializes a new instance of ObjectNotFoundException /// /// /// private ObjectNotFoundException(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
- PersonalizationProviderCollection.cs
- UidManager.cs
- MimeMultiPart.cs
- ViewValidator.cs
- SQLMoneyStorage.cs
- UnionQueryOperator.cs
- ClrProviderManifest.cs
- ExceptionValidationRule.cs
- DbgCompiler.cs
- SendKeys.cs
- FormViewUpdatedEventArgs.cs
- DataGridViewColumn.cs
- Boolean.cs
- _ConnectOverlappedAsyncResult.cs
- HttpWebRequest.cs
- COM2ComponentEditor.cs
- XmlCDATASection.cs
- X509SecurityTokenAuthenticator.cs
- PageSetupDialog.cs
- SqlClientFactory.cs
- UniqueConstraint.cs
- Parser.cs
- CollectionViewGroupInternal.cs
- BitmapPalette.cs
- AttributeProviderAttribute.cs
- DisposableCollectionWrapper.cs
- DocumentApplicationJournalEntry.cs
- VectorAnimationBase.cs
- ArrayHelper.cs
- DataGridColumnReorderingEventArgs.cs
- ObjectToIdCache.cs
- Dispatcher.cs
- EmptyEnumerator.cs
- TimeEnumHelper.cs
- ExpressionVisitor.cs
- SymbolPair.cs
- DataGridView.cs
- Simplifier.cs
- CommandHelper.cs
- Exceptions.cs
- TemplateField.cs
- HandlerElement.cs
- MailWebEventProvider.cs
- CompositeScriptReference.cs
- TypeExtension.cs
- HealthMonitoringSectionHelper.cs
- LogLogRecordHeader.cs
- DefaultEventAttribute.cs
- PageContent.cs
- TypeUtil.cs
- Base64WriteStateInfo.cs
- ClientSideQueueItem.cs
- Int16AnimationBase.cs
- NullableLongAverageAggregationOperator.cs
- EdmComplexTypeAttribute.cs
- SqlUtils.cs
- QilTargetType.cs
- FieldDescriptor.cs
- TypeElement.cs
- SetMemberBinder.cs
- LZCodec.cs
- PackWebRequest.cs
- FloatSumAggregationOperator.cs
- EditorBrowsableAttribute.cs
- ServerProtocol.cs
- ISAPIWorkerRequest.cs
- CollectionConverter.cs
- DataGridColumnCollection.cs
- InheritanceUI.cs
- ConfigXmlElement.cs
- dbdatarecord.cs
- JsonByteArrayDataContract.cs
- XsdBuilder.cs
- StrongBox.cs
- IdentifierService.cs
- SelectionChangedEventArgs.cs
- MobileUITypeEditor.cs
- QuaternionRotation3D.cs
- RtfToXamlReader.cs
- DbBuffer.cs
- FileFormatException.cs
- ImageIndexEditor.cs
- AppearanceEditorPart.cs
- Button.cs
- SectionXmlInfo.cs
- RecognitionEventArgs.cs
- ContentType.cs
- CodeNamespaceCollection.cs
- SiteMapNodeItem.cs
- __Error.cs
- PreProcessInputEventArgs.cs
- DbConnectionPoolOptions.cs
- DateTimePicker.cs
- TextTreeTextBlock.cs
- CookielessHelper.cs
- Point.cs
- InfiniteIntConverter.cs
- WeakReferenceEnumerator.cs
- StrokeIntersection.cs
- IDispatchConstantAttribute.cs