Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DLinq / Dlinq / Exceptions.cs / 1 / Exceptions.cs
using System; using System.Collections.Generic; using System.Data.Linq.Provider; using System.Linq; using System.Diagnostics.CodeAnalysis; namespace System.Data.Linq { ////// DLinq-specific custom exception factory. /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class ChangeConflictException : Exception { public ChangeConflictException() { } public ChangeConflictException(string message) : base(message) { } public ChangeConflictException(string message, Exception innerException) : base(message, innerException) { } } ////// An attempt was made to add an object to the identity cache with a key that is already in use /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class DuplicateKeyException : InvalidOperationException { private object duplicate; public DuplicateKeyException(object duplicate) { this.duplicate = duplicate; } public DuplicateKeyException(object duplicate, string message) : base(message) { this.duplicate = duplicate; } public DuplicateKeyException(object duplicate, string message, Exception innerException) : base(message, innerException) { this.duplicate = duplicate; } ////// The object whose duplicate key caused the exception. /// public object Object { get { return duplicate; } } } ////// An attempt was made to change an FK but the Entity is Loaded /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class ForeignKeyReferenceAlreadyHasValueException : InvalidOperationException { public ForeignKeyReferenceAlreadyHasValueException() { } public ForeignKeyReferenceAlreadyHasValueException(string message) : base(message) { } public ForeignKeyReferenceAlreadyHasValueException(string message, Exception innerException) : base(message, innerException) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Data.Linq.Provider; using System.Linq; using System.Diagnostics.CodeAnalysis; namespace System.Data.Linq { ////// DLinq-specific custom exception factory. /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class ChangeConflictException : Exception { public ChangeConflictException() { } public ChangeConflictException(string message) : base(message) { } public ChangeConflictException(string message, Exception innerException) : base(message, innerException) { } } ////// An attempt was made to add an object to the identity cache with a key that is already in use /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class DuplicateKeyException : InvalidOperationException { private object duplicate; public DuplicateKeyException(object duplicate) { this.duplicate = duplicate; } public DuplicateKeyException(object duplicate, string message) : base(message) { this.duplicate = duplicate; } public DuplicateKeyException(object duplicate, string message, Exception innerException) : base(message, innerException) { this.duplicate = duplicate; } ////// The object whose duplicate key caused the exception. /// public object Object { get { return duplicate; } } } ////// An attempt was made to change an FK but the Entity is Loaded /// [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Unknown reason.")] [SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "Unknown reason.")] public class ForeignKeyReferenceAlreadyHasValueException : InvalidOperationException { public ForeignKeyReferenceAlreadyHasValueException() { } public ForeignKeyReferenceAlreadyHasValueException(string message) : base(message) { } public ForeignKeyReferenceAlreadyHasValueException(string message, Exception innerException) : base(message, innerException) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpProcessUtility.cs
- QilLoop.cs
- _ProxyChain.cs
- ObjectPropertyMapping.cs
- MemberMaps.cs
- TreeView.cs
- InputLangChangeRequestEvent.cs
- MatrixTransform3D.cs
- Geometry.cs
- ItemTypeToolStripMenuItem.cs
- DynamicExpression.cs
- AssemblyHash.cs
- HandlerFactoryCache.cs
- FamilyMap.cs
- MobileFormsAuthentication.cs
- PrincipalPermission.cs
- NumericUpDown.cs
- LockedBorderGlyph.cs
- Geometry.cs
- WebSysDescriptionAttribute.cs
- DBCommand.cs
- CreateInstanceBinder.cs
- ChannelServices.cs
- CompressedStack.cs
- IndexedSelectQueryOperator.cs
- ValueQuery.cs
- ResolvedKeyFrameEntry.cs
- CodeObject.cs
- XsdCachingReader.cs
- EntityDataSourceViewSchema.cs
- CorrelationManager.cs
- Compensate.cs
- CssClassPropertyAttribute.cs
- PartitionedStream.cs
- FilterElement.cs
- TextDecorationCollection.cs
- StringCollection.cs
- Camera.cs
- ControlPaint.cs
- XamlWrappingReader.cs
- CompilationUnit.cs
- ReflectionUtil.cs
- PenLineJoinValidation.cs
- SkewTransform.cs
- ComponentChangedEvent.cs
- OledbConnectionStringbuilder.cs
- ThreadPool.cs
- RtfToXamlLexer.cs
- NetworkInformationPermission.cs
- CommonDialog.cs
- UndoEngine.cs
- SelectorItemAutomationPeer.cs
- OdbcTransaction.cs
- WebDisplayNameAttribute.cs
- TextBlockAutomationPeer.cs
- AsyncInvokeOperation.cs
- Figure.cs
- SqlClientPermission.cs
- DnsCache.cs
- RichTextBoxAutomationPeer.cs
- DbConnectionClosed.cs
- CurrentTimeZone.cs
- TextSchema.cs
- SmiEventSink_DeferedProcessing.cs
- ExtendLockCommand.cs
- HyperLinkField.cs
- XmlSchemaImporter.cs
- TypeInitializationException.cs
- ProfileProvider.cs
- Debug.cs
- DynamicPropertyHolder.cs
- PeerCollaborationPermission.cs
- XmlNamespaceMappingCollection.cs
- NamespaceDecl.cs
- DelegateSerializationHolder.cs
- ComponentEditorForm.cs
- CellRelation.cs
- TraversalRequest.cs
- XPathSelectionIterator.cs
- TemplateApplicationHelper.cs
- DiffuseMaterial.cs
- MessageQueueKey.cs
- sqlmetadatafactory.cs
- SecureUICommand.cs
- EventProxy.cs
- MdImport.cs
- CodeArrayCreateExpression.cs
- XPathBuilder.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- FontNamesConverter.cs
- XmlSerializer.cs
- TableLayoutStyleCollection.cs
- SerializationHelper.cs
- LiteralText.cs
- ObjectNotFoundException.cs
- XhtmlBasicPhoneCallAdapter.cs
- StreamGeometry.cs
- _NegotiateClient.cs
- CacheSection.cs
- RestClientProxyHandler.cs