Moby Disk Consulting
Software Development, Training & Consulting
William Garrison - mobydisk at mobydisk daht com

.NET Framework Exceptions

I have often wanted a comprehensive list of all exceptions in the .NET Framework. You can navigate the exceptions on MSDN, but there is no single master list. So here it is: Every single publically creatable exception in the .NET 3.5 SDK, in no particular order:

You can also download the tool that generates this list...

mscorlib

System.SystemExceptionDefines the base class for predefined exceptions in the namespace.
System.OutOfMemoryExceptionThe exception that is thrown when there is not enough memory to continue the execution of a program.
System.StackOverflowExceptionThe exception that is thrown when the execution stack overflows by having too many pending method calls. This class cannot be inherited.
System.DataMisalignedExceptionThe exception that is thrown when a unit of data is read from or written to an address that is not a multiple of the data size. This class cannot be inherited.
System.ExecutionEngineExceptionThe exception that is thrown when there is an internal error in the execution engine of the common language runtime. This class cannot be inherited.
System.MemberAccessExceptionThe exception that is thrown when an attempt to access a class member fails.
System.AccessViolationExceptionThe exception that is thrown when there is an attempt to read or write protected memory.
System.ApplicationExceptionThe exception that is thrown when a non-fatal application error occurs.
System.AppDomainUnloadedExceptionThe exception that is thrown when an attempt is made to access an unloaded application domain.
System.ArgumentExceptionThe exception that is thrown when one of the arguments provided to a method is not valid.
System.ArgumentNullExceptionThe exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
System.ArgumentOutOfRangeExceptionThe exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
System.ArithmeticExceptionThe exception that is thrown for errors in an arithmetic, casting, or conversion operation.
System.ArrayTypeMismatchExceptionThe exception that is thrown when an attempt is made to store an element of the wrong type within an array.
System.BadImageFormatExceptionThe exception that is thrown when the file image of a DLL or an executable program is invalid.
System.CannotUnloadAppDomainExceptionThe exception that is thrown when an attempt to unload an application domain fails.
System.TypeUnloadedExceptionThe exception that is thrown when there is an attempt to access an unloaded class.
System.ContextMarshalExceptionThe exception that is thrown when an attempt to marshal an object across a context boundary fails.
System.DivideByZeroExceptionThe exception that is thrown when there is an attempt to divide an integral or decimal value by zero.
System.DuplicateWaitObjectExceptionThe exception that is thrown when an object appears more than once in an array of synchronization objects.
System.TypeLoadExceptionThe exception that is thrown when type-loading failures occur.
System.EntryPointNotFoundExceptionThe exception that is thrown when an attempt to load a class fails due to the absence of an entry method.
System.DllNotFoundExceptionThe exception that is thrown when a DLL specified in a DLL import cannot be found.
System.FieldAccessExceptionThe exception that is thrown when there is an invalid attempt to access a private or protected field inside a class.
System.FormatExceptionThe exception that is thrown when the format of an argument does not meet the parameter specifications of the invoked method.
System.IndexOutOfRangeExceptionThe exception that is thrown when an attempt is made to access an element of an array with an index that is outside the bounds of the array. This class cannot be inherited.
System.InsufficientMemoryExceptionThe exception that is thrown when a check for sufficient available memory fails. This class cannot be inherited.
System.InvalidCastExceptionThe exception that is thrown for invalid casting or explicit conversion.
System.InvalidOperationExceptionThe exception that is thrown when a method call is invalid for the object's current state.
System.InvalidProgramExceptionThe exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program.
System.MethodAccessExceptionThe exception that is thrown when there is an invalid attempt to access a private or protected method inside a class.
System.MissingMemberExceptionThe exception that is thrown when there is an attempt to dynamically access a class member that does not exist.
System.MissingFieldExceptionThe exception that is thrown when there is an attempt to dynamically access a field that does not exist.
System.MissingMethodExceptionThe exception that is thrown when there is an attempt to dynamically access a method that does not exist.
System.MulticastNotSupportedExceptionThe exception that is thrown when there is an attempt to combine two instances of a non-combinable delegate type unless one of the operands is a null reference (Nothing in Visual Basic). This class cannot be inherited.
System.NotFiniteNumberExceptionThe exception that is thrown when a floating-point value is positive infinity, negative infinity, or Not-a-Number (NaN).
System.NotImplementedExceptionThe exception that is thrown when a requested method or operation is not implemented.
System.NotSupportedExceptionThe exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
System.NullReferenceExceptionThe exception that is thrown when there is an attempt to dereference a null object reference.
System.ObjectDisposedExceptionThe exception that is thrown when an operation is performed on a disposed object.
System.OperationCanceledExceptionThe exception that is thrown in a thread upon cancellation of an operation that the thread was executing.
System.OverflowExceptionThe exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow.
System.PlatformNotSupportedExceptionThe exception that is thrown when a feature does not run on a particular platform.
System.RankExceptionThe exception that is thrown when an array with the wrong number of dimensions is passed to a method.
System.TimeoutExceptionThe exception that is thrown when the time allotted for a process or operation has expired.
System.TypeInitializationExceptionThe exception that is thrown as a wrapper around the exception thrown by the class initializer. This class cannot be inherited.
System.UnauthorizedAccessExceptionThe exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error.
System.Threading.AbandonedMutexExceptionThe exception that is thrown when one thread acquires a object that another thread has abandoned by exiting without releasing it.
System.Threading.SynchronizationLockExceptionThe exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock.
System.Threading.ThreadInterruptedExceptionThe exception that is thrown when a is interrupted while it is in a waiting state.
System.Threading.ThreadStateExceptionThe exception that is thrown when a is in an invalid for the method call.
System.Threading.WaitHandleCannotBeOpenedExceptionThe exception that is thrown when an attempt is made to open a system mutex or semaphore that does not exist.
System.Collections.Generic.KeyNotFoundExceptionThe exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection.
System.Reflection.AmbiguousMatchExceptionThe exception that is thrown when binding to a member results in more than one member matching the binding criteria. This class cannot be inherited.
System.Reflection.CustomAttributeFormatExceptionThe exception that is thrown when the binary format of a custom attribute is invalid.
System.Reflection.InvalidFilterCriteriaExceptionThe exception that is thrown in when the filter criteria is not valid for the type of filter you are using.
System.Reflection.ReflectionTypeLoadExceptionThe exception that is thrown by the method if any of the classes in a module cannot be loaded. This class cannot be inherited.
System.Reflection.TargetExceptionRepresents the exception that is thrown when an attempt is made to invoke an invalid target.
System.Reflection.TargetInvocationExceptionThe exception that is thrown by methods invoked through reflection. This class cannot be inherited.
System.Reflection.TargetParameterCountExceptionThe exception that is thrown when the number of parameters for an invocation does not match the number expected. This class cannot be inherited.
System.Runtime.Serialization.SerializationExceptionThe exception thrown when an error occurs during serialization or deserialization.
System.Text.DecoderFallbackExceptionThe exception that is thrown when a decoder fallback operation fails. This class cannot be inherited.
System.Text.EncoderFallbackExceptionThe exception that is thrown when an encoder fallback operation fails. This class cannot be inherited.
System.Resources.MissingManifestResourceExceptionThe exception thrown if the main assembly does not contain the resources for the neutral culture, and they are required because of a missing appropriate satellite assembly.
System.Resources.MissingSatelliteAssemblyExceptionThe exception that is thrown when the satellite assembly for the resources of the neutral culture is missing.
System.Security.Policy.PolicyExceptionThe exception that is thrown when policy forbids code to run.
System.Runtime.InteropServices.ExternalExceptionThe base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions.
System.Runtime.InteropServices.COMExceptionThe exception that is thrown when an unrecognized HRESULT is returned from a COM method call.
System.Runtime.InteropServices.InvalidOleVariantTypeExceptionThe exception thrown by the marshaler when it encounters an argument of a variant type that can not be marshaled to managed code.
System.Runtime.InteropServices.MarshalDirectiveExceptionThe exception that is thrown by the marshaler when it encounters a it does not support.
System.Runtime.InteropServices.SEHExceptionRepresents Structured Exception Handler (SEH) errors.
System.Runtime.InteropServices.InvalidComObjectExceptionThe exception thrown when an invalid COM object is used.
System.Runtime.InteropServices.SafeArrayRankMismatchExceptionThe exception thrown when the rank of an incoming SAFEARRAY does not match the rank specified in the managed signature.
System.Runtime.InteropServices.SafeArrayTypeMismatchExceptionThe exception thrown when the type of the incoming SAFEARRAY does not match the type specified in the managed signature.
System.IO.IOExceptionThe exception that is thrown when an I/O error occurs.
System.IO.DirectoryNotFoundExceptionThe exception that is thrown when part of a file or directory cannot be found.
System.IO.DriveNotFoundExceptionThe exception that is thrown when trying to access a drive or share that is not available.
System.IO.EndOfStreamExceptionThe exception that is thrown when reading is attempted past the end of a stream.
System.IO.FileLoadExceptionThe exception that is thrown when a managed assembly is found but cannot be loaded.
System.IO.FileNotFoundExceptionThe exception that is thrown when an attempt to access a file that does not exist on disk fails.
System.IO.PathTooLongExceptionThe exception that is thrown when a pathname or filename is longer than the system-defined maximum length.
System.Security.XmlSyntaxExceptionThe exception that is thrown when there is a syntax error in XML parsing. This class cannot be inherited.
System.Security.SecurityExceptionThe exception that is thrown when a security error is detected.
System.Security.HostProtectionExceptionThe exception that is thrown when a denied host resource is detected.
System.Security.VerificationExceptionThe exception that is thrown when the security policy requires code to be type safe and the verification process is unable to verify that the code is type safe.
System.Runtime.Remoting.RemotingExceptionThe exception that is thrown when something has gone wrong during remoting.
System.Runtime.Remoting.ServerExceptionThe exception that is thrown to communicate errors to the client when the client connects to non-.NET Framework applications that cannot throw exceptions.
System.Runtime.Remoting.RemotingTimeoutExceptionThe exception that is thrown when the server or the client cannot be reached for a previously specified period of time.
System.IO.IsolatedStorage.IsolatedStorageExceptionThe exception that is thrown when an operation in isolated storage fails.
System.Security.Cryptography.CryptographicExceptionThe exception that is thrown when an error occurs during a cryptographic operation.
System.Security.Cryptography.CryptographicUnexpectedOperationExceptionThe exception that is thrown when an unexpected operation occurs during a cryptographic operation.
System.Security.AccessControl.PrivilegeNotHeldExceptionThe exception that is thrown when a method in the namespace attempts to enable a privilege that it does not have.
System.Security.Principal.IdentityNotMappedExceptionRepresents an exception for a principal whose identity could not be mapped to a known identity.

Microsoft.Build.Engine

Microsoft.Build.BuildEngine.InvalidProjectFileExceptionThis exception is thrown whenever there is a problem with the user's XML project file. The problem might be semantic or syntactical. If the problem is in the syntax, it can typically be caught by XSD validation.
Microsoft.Build.BuildEngine.InternalLoggerExceptionThis exception is used to wrap an unhandled exception from a logger.

Microsoft.Build.Framework

Microsoft.Build.Framework.LoggerExceptionAllows a logger to force the build to stop in an explicit way.

Microsoft.JScript

Microsoft.JScript.BreakOutOfFinally
Microsoft.JScript.CmdLineException
Microsoft.JScript.ContinueOutOfFinally
Microsoft.JScript.JScriptException
Microsoft.JScript.NoContextException
Microsoft.JScript.ReturnOutOfFinally

Microsoft.VisualBasic.Compatibility

Microsoft.VisualBasic.Compatibility.VB6.WebItemNameNotOptional
Microsoft.VisualBasic.Compatibility.VB6.WebItemAssociatedWebClassNotOptional
Microsoft.VisualBasic.Compatibility.VB6.WebItemCouldNotLoadEmbeddedResource
Microsoft.VisualBasic.Compatibility.VB6.WebItemCouldNotLoadTemplateFile
Microsoft.VisualBasic.Compatibility.VB6.WebItemUnexpectedErrorReadingTemplateFile
Microsoft.VisualBasic.Compatibility.VB6.WebItemTooManyNestedTags
Microsoft.VisualBasic.Compatibility.VB6.WebItemClosingTagNotFound
Microsoft.VisualBasic.Compatibility.VB6.WebItemNoTemplateSpecified
Microsoft.VisualBasic.Compatibility.VB6.WebClassNextItemCannotBeCurrentWebItem
Microsoft.VisualBasic.Compatibility.VB6.WebClassUserWebClassNameNotOptional
Microsoft.VisualBasic.Compatibility.VB6.WebClassWebClassFileNameNotOptional
Microsoft.VisualBasic.Compatibility.VB6.WebClassContainingClassNotOptional
Microsoft.VisualBasic.Compatibility.VB6.WebClassNextItemRespondNotFound
Microsoft.VisualBasic.Compatibility.VB6.WebClassCouldNotFindEvent
Microsoft.VisualBasic.Compatibility.VB6.WebClassWebItemNotValid

Microsoft.VisualBasic

Microsoft.VisualBasic.ApplicationServices.NoStartupFormExceptionThis exception is thrown by the Visual Basic Application Model when the property has not been set.
Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceExceptionThis exception is thrown when a subsequent instance of a single-instance application is unable to connect to the first application instance.
Microsoft.VisualBasic.FileIO.MalformedLineExceptionThe exception that is thrown when the method cannot parse a row using the specified format.
Microsoft.VisualBasic.CompilerServices.InternalErrorException
Microsoft.VisualBasic.CompilerServices.IncompleteInitialization

Microsoft.Vsa

Microsoft.Vsa.VsaException

System.Configuration

System.Configuration.ConfigurationErrorsExceptionThe exception that is thrown when a configuration-system error has occurred.
System.Configuration.Provider.ProviderExceptionThe exception that is thrown when a configuration provider error has occurred. This exception class is also used by providers to throw exceptions when internal errors occur within the provider that do not map to other pre-existing exception classes.

System.Configuration.Install

System.Configuration.Install.InstallExceptionThe exception that is thrown when an error occurs during the commit, rollback, or uninstall phase of an installation.

System.Data

System.Data.DataExceptionRepresents the exception that is thrown when errors are generated using ADO.NET components.
System.Data.ConstraintExceptionRepresents the exception that is thrown when attempting an action that violates a constraint.
System.Data.DeletedRowInaccessibleExceptionRepresents the exception that is thrown when an action is tried on a that has been deleted.
System.Data.DuplicateNameExceptionRepresents the exception that is thrown when a duplicate database object name is encountered during an add operation in a -related object.
System.Data.InRowChangingEventExceptionRepresents the exception that is thrown when you call the method within the event.
System.Data.InvalidConstraintExceptionRepresents the exception that is thrown when incorrectly trying to create or access a relation.
System.Data.MissingPrimaryKeyExceptionRepresents the exception that is thrown when you try to access a row in a table that has no primary key.
System.Data.NoNullAllowedExceptionRepresents the exception that is thrown when you try to insert a null value into a column where is set to false.
System.Data.ReadOnlyExceptionRepresents the exception that is thrown when you try to change the value of a read-only column.
System.Data.RowNotInTableExceptionRepresents the exception that is thrown when you try to perform an operation on a that is not in a .
System.Data.VersionNotFoundExceptionRepresents the exception that is thrown when you try to return a version of a that has been deleted.
System.Data.DBConcurrencyExceptionThe exception that is thrown by the during an insert, update, or delete operation if the number of rows affected equals zero.
System.Data.StrongTypingExceptionThe exception that is thrown by a strongly typed when the user accesses a DBNull value.
System.Data.TypedDataSetGeneratorExceptionThe exception that is thrown when a name conflict occurs while generating a strongly typed .
System.Data.InvalidExpressionExceptionRepresents the exception that is thrown when you try to add a that contains an invalid to a .
System.Data.EvaluateExceptionRepresents the exception that is thrown when the property of a cannot be evaluated.
System.Data.SyntaxErrorExceptionRepresents the exception that is thrown when the property of a contains a syntax error.
System.Data.SqlTypes.SqlTypeExceptionThe base exception class for the .
System.Data.SqlTypes.SqlNullValueExceptionThe exception that is thrown when the Value property of a structure is set to null.
System.Data.SqlTypes.SqlTruncateExceptionThe exception that is thrown when you set a value into a structure would truncate that value.
System.Data.SqlTypes.SqlNotFilledExceptionThe class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.
System.Data.SqlTypes.SqlAlreadyFilledExceptionThe class is not intended for use as a stand-alone component, but as a class from which other classes derive standard functionality.

System.Deployment

System.Deployment.Application.DeploymentExceptionDefines a base class for all deployment-related exceptions.
System.Deployment.Application.InvalidDeploymentExceptionIndicates that ClickOnce could not read either the deployment or application manifests.
System.Deployment.Application.DeploymentDownloadExceptionIndicates that there was an error downloading either the ClickOnce manifests or the deployment's files to the client computer.
System.Deployment.Application.TrustNotGrantedExceptionIndicates that the application does not have the appropriate level of trust to run on the local computer.
System.Deployment.Application.DependentPlatformMissingException

System.Design

System.Data.Design.TypedDataSetGeneratorExceptionThe exception that is thrown when a name conflict occurs while generating a strongly typed .
System.ComponentModel.Design.Serialization.CodeDomSerializerExceptionThe exception that is thrown when line number information is available for a serialization error.
System.ComponentModel.Design.ExceptionCollectionRepresents the collection of exceptions.

System.DirectoryServices

System.DirectoryServices.DirectoryServicesCOMExceptionContains extended error information about an error that occurred when the method is called.
System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundExceptionThe class exception is thrown when a requested object is not found in the underlying directory store.
System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationExceptionThe class exception is thrown when an underlying directory operation fails.
System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownExceptionThe class exception is thrown when a server is unavailable to respond to a service request.
System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsExceptionThe class exception is thrown when an Active Directory object is created and that object already exists in the underlying directory store.
System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationExceptionThe exception is thrown when the request to synchronize from all servers fails.
System.DirectoryServices.ActiveDirectory.ForestTrustCollisionExceptionThe class exception is thrown when a trust collision occurs during a trust relationship management request.

System.DirectoryServices.Protocols

System.DirectoryServices.Protocols.DirectoryExceptionThe class is an abstract class used as the base class for all exceptions.
System.DirectoryServices.Protocols.DirectoryOperationExceptionThe class is an exception thrown by the method to indicate that the server returned a object with an error.
System.DirectoryServices.Protocols.BerConversionExceptionThe class is an exception thrown when converting data using a object.
System.DirectoryServices.Protocols.DsmlInvalidDocumentExceptionThe class is an exception that occurs when a DSML Request or Response document is not well-formed XML or cannot be validated with DSMLv2 schema.
System.DirectoryServices.Protocols.ErrorResponseExceptionThe class is an exception that occurs when the server returns an .
System.DirectoryServices.Protocols.LdapExceptionThe class is an exception that occurs when LDAP returns an error code not included in .
System.DirectoryServices.Protocols.TlsOperationExceptionThe class is an exception that occurs in the method if the request fails.

System

System.ComponentModel.InvalidAsynchronousStateException
System.ComponentModel.InvalidEnumArgumentExceptionThe exception thrown when using invalid arguments that are enumerators.
System.ComponentModel.LicenseExceptionRepresents the exception thrown when a component cannot be granted a license.
System.ComponentModel.WarningExceptionSpecifies an exception that is handled as a warning instead of an error.
System.ComponentModel.Win32ExceptionThrows an exception for a Win32 error code.
System.ComponentModel.Design.CheckoutExceptionThe exception that is thrown when an attempt to check out a file that is checked into a source code management program is canceled or fails.
System.IO.InvalidDataExceptionThe exception that is thrown when a data stream is in an invalid format.
System.Threading.SemaphoreFullExceptionThe exception that is thrown when the method is called on a semaphore whose count is already at the maximum.
System.UriFormatExceptionThe exception that is thrown when an invalid Uniform Resource Identifier (URI) is detected.
System.Net.CookieExceptionThe exception that is thrown when an error is made adding a to a .
System.Net.HttpListenerExceptionThe exception that is thrown when an error occurs processing an HTTP request.
System.Net.ProtocolViolationExceptionThe exception that is thrown when an error is made while using a network protocol.
System.Net.Sockets.SocketExceptionThe exception that is thrown when a socket error occurs.
System.Net.WebExceptionThe exception that is thrown when an error occurs while accessing the network through a pluggable protocol.
System.Security.Authentication.AuthenticationExceptionThe exception that is thrown when authentication fails for an authentication stream.
System.Security.Authentication.InvalidCredentialExceptionThe exception that is thrown when authentication fails for an authentication stream and cannot be retried.
System.Net.NetworkInformation.NetworkInformationExceptionThe exception that is thrown when an error occurs while retrieving network information.
System.Net.NetworkInformation.PingExceptionThe exception that is thrown when a or method calls a method that throws an exception.
System.Net.Mail.SmtpExceptionRepresents the exception that is thrown when the is not able to complete a or operation.
System.Net.Mail.SmtpFailedRecipientExceptionRepresents the exception that is thrown when the is not able to complete a or operation to a particular recipient.
System.Net.Mail.SmtpFailedRecipientsExceptionThe exception that is thrown when e-mail is sent using an and cannot be delivered to all recipients.
System.Configuration.ConfigurationExceptionThe exception that is thrown when a configuration system error has occurred.
System.Configuration.SettingsPropertyIsReadOnlyExceptionProvides an exception for read-only objects.
System.Configuration.SettingsPropertyNotFoundExceptionProvides an exception for objects that are not found.
System.Configuration.SettingsPropertyWrongTypeExceptionProvides an exception that is thrown when an invalid type is used with a object.
System.IO.InternalBufferOverflowExceptionThe exception thrown when the internal buffer overflows.

System.Drawing

System.Drawing.Printing.InvalidPrinterExceptionRepresents the exception that is thrown when you try to access a printer using printer settings that are not valid.

System.EnterpriseServices

System.EnterpriseServices.ServicedComponentExceptionThe exception that is thrown when an error is detected in a serviced component.
System.EnterpriseServices.RegistrationExceptionThe exception that is thrown when a registration error is detected.

System.Management

System.Management.ManagementExceptionRepresents management exceptions.

System.ServiceProcess

System.ServiceProcess.TimeoutExceptionThe exception that is thrown when a specified timeout has expired.

System.Transactions

System.Transactions.TransactionExceptionThe exception that is thrown when you attempt to do work on a transaction that cannot accept new work.
System.Transactions.TransactionAbortedExceptionThe exception that is thrown when an operation is attempted on a transaction that has already been rolled back, or an attempt is made to commit the transaction and the transaction aborts.
System.Transactions.TransactionInDoubtExceptionThe exception that is thrown when an operation is attempted on a transaction that is in doubt, or an attempt is made to commit the transaction and the transaction becomes InDoubt.
System.Transactions.TransactionManagerCommunicationExceptionThe exception that is thrown when a resource manager cannot communicate with the transaction manager.
System.Transactions.TransactionPromotionExceptionThe exception that is thrown when a promotion fails.

System.Web

System.Web.HttpExceptionDescribes an exception that occurred during the processing of HTTP requests.
System.Web.HttpUnhandledExceptionThe exception that is thrown when a generic exception occurs.
System.Web.HttpCompileExceptionThe exception that is thrown when a compiler error occurs.
System.Web.HttpParseExceptionThe exception that is thrown when a parse error occurs.
System.Web.HttpRequestValidationExceptionThe exception that is thrown when a potentially malicious input string is received from the client as part of the request data. This class cannot be inherited.
System.Web.Caching.DatabaseNotEnabledForNotificationExceptionThe exception that is thrown when a SQL Server database is not enabled to support dependencies associated with the class. This class cannot be inherited.
System.Web.Caching.TableNotEnabledForNotificationExceptionThe exception that is thrown when a class is used against a database table that is not enabled for change notifications.
System.Web.Management.SqlExecutionExceptionDefines a class for SQL execution exceptions in the namespace.
System.Web.Security.MembershipCreateUserExceptionThe exception that is thrown when a user is not successfully created by a membership provider.
System.Web.Security.MembershipPasswordExceptionThe exception that is thrown when a password cannot be retrieved from the password store.
System.Web.UI.ViewStateExceptionRepresents the exception that is thrown when the view state cannot be loaded or validated. This class cannot be inherited.

System.Web.Services

System.Web.Services.Protocols.SoapExceptionRepresents the exception that is thrown when an XML Web service method is called over SOAP and an exception occurs.
System.Web.Services.Protocols.SoapHeaderExceptionThe SOAP representation of a server error.

System.Xml

System.Xml.XmlExceptionReturns detailed information about the last exception.
System.Xml.XPath.XPathExceptionProvides the exception thrown when an error occurs while processing an XPath expression.
System.Xml.Xsl.XsltExceptionThe exception that is thrown when an error occurs while processing an XSLT transformation.
System.Xml.Xsl.XsltCompileExceptionThe exception that is thrown by the Load method when an error is found in the XSLT style sheet.
System.Xml.Schema.XmlSchemaExceptionReturns detailed information about the schema exception.
System.Xml.Schema.XmlSchemaValidationExceptionRepresents the exception thrown when XML Schema Definition Language (XSD) schema validation errors and warnings are encountered in an XML document being validated.
System.Xml.Schema.XmlSchemaInferenceExceptionReturns information about errors encountered by the class while inferring a schema from an XML document.

Microsoft.DirectX.Direct3D

Microsoft.DirectX.Direct3D.GraphicsExceptionBase exception type for graphics. Derives from .
Microsoft.DirectX.Direct3D.WrongTextureFormatExceptionThe pixel format of the texture surface is not valid.
Microsoft.DirectX.Direct3D.UnsupportedColorOperationExceptionThe device does not support a specified texture-blending operation for color values.
Microsoft.DirectX.Direct3D.UnsupportedColorArgumentExceptionThe device does not support a specified texture-blending argument for color values.
Microsoft.DirectX.Direct3D.UnsupportedAlphaOperationExceptionThe device does not support a specified texture-blending operation for the alpha channel.
Microsoft.DirectX.Direct3D.UnsupportedAlphaArgumentExceptionThe device does not support a specified texture-blending argument for the alpha channel.
Microsoft.DirectX.Direct3D.TooManyOperationsExceptionThe application is requesting more texture-filtering operations than the device supports.
Microsoft.DirectX.Direct3D.ConflictingTextureFilterExceptionThe current texture filters cannot be used together.
Microsoft.DirectX.Direct3D.UnsupportedFactorValueExceptionThe device does not support the specified texture factor value. Not used; provided only to support older drivers.
Microsoft.DirectX.Direct3D.ConflictingRenderStateExceptionThe currently set render states cannot be used together.
Microsoft.DirectX.Direct3D.UnsupportedTextureFilterExceptionThe device does not support the specified texture filter.
Microsoft.DirectX.Direct3D.ConflictingTexturePaletteExceptionThe current textures cannot be used simultaneously.
Microsoft.DirectX.Direct3D.DriverInternalErrorExceptionInternal driver error. Applications should generally shut down when receiving this error.
Microsoft.DirectX.Direct3D.NotFoundExceptionThe requested item was not found.
Microsoft.DirectX.Direct3D.MoreDataExceptionMore data is available than the specified buffer size can hold.
Microsoft.DirectX.Direct3D.DeviceLostExceptionThe device has been lost but cannot be reset at this time. Therefore, rendering is not possible.
Microsoft.DirectX.Direct3D.DeviceNotResetExceptionThe device has been lost but can be reset at this time.
Microsoft.DirectX.Direct3D.NotAvailableExceptionThis device does not support the queried technique.
Microsoft.DirectX.Direct3D.OutOfVideoMemoryExceptionMicrosoft Direct3D does not have enough display memory to perform the operation.
Microsoft.DirectX.Direct3D.InvalidDeviceExceptionThe requested device type is not valid.
Microsoft.DirectX.Direct3D.InvalidCallExceptionThe method call is invalid. For example, a method's parameter might not be valid.
Microsoft.DirectX.Direct3D.DriverInvalidCallExceptionThe driver reports that the current method call is invalid.
Microsoft.DirectX.Direct3D.WasStillDrawingExceptionThe device was still drawing.

Microsoft.DirectX.Direct3DX

Microsoft.DirectX.Direct3D.Direct3DXExceptionBase exception class for D3DX. Derives from .
Microsoft.DirectX.Direct3D.CannotModifyIndexBufferExceptionThe index buffer cannot be modified.
Microsoft.DirectX.Direct3D.InvalidMeshExceptionThe mesh is invalid.
Microsoft.DirectX.Direct3D.CannotAttributeSortExceptionAttribute sort is not supported as an optimization technique. For more information, see .
Microsoft.DirectX.Direct3D.SkinningNotSupportedExceptionSkinning is not supported.
Microsoft.DirectX.Direct3D.TooManyInfluencesExceptionToo many influences specified.
Microsoft.DirectX.Direct3D.InvalidDataExceptionThe data is invalid.
Microsoft.DirectX.Direct3D.LoadedMeshHasNoDataExceptionThe mesh has no data.
Microsoft.DirectX.Direct3D.DuplicateNamedFragmentExceptionThere is a duplicate named fragment.

Microsoft.DirectX.DirectDraw

Microsoft.DirectX.DirectInput

Microsoft.DirectX.DirectInput.InputExceptionBase exception type for all DirectInput exceptions. Derives from DirectXException.
Microsoft.DirectX.DirectInput.BadDriverVersionExceptionThe object could not be created due to an incompatible driver version or mismatched or incomplete driver components.
Microsoft.DirectX.DirectInput.DeviceNotRegisteredExceptionThe device or device instance is not registered with DirectInput.
Microsoft.DirectX.DirectInput.NotFoundExceptionThe requested object does not exist.
Microsoft.DirectX.DirectInput.UnsupportedExceptionThe function called is not supported at this time.
Microsoft.DirectX.DirectInput.OtherApplicationHasPriorityExceptionAnother application has a higher priority level, preventing this call from succeeding.
Microsoft.DirectX.DirectInput.InputLostExceptionAccess to the input device has been lost. It must be reacquired.
Microsoft.DirectX.DirectInput.AcquiredExceptionThe operation cannot be performed while the device is acquired.
Microsoft.DirectX.DirectInput.NotAcquiredExceptionThe operation cannot be performed unless the device is acquired.
Microsoft.DirectX.DirectInput.PendingExceptionData is not yet available.
Microsoft.DirectX.DirectInput.InsufficientPriveledgesExceptionInsufficient priveledges for this call.
Microsoft.DirectX.DirectInput.DeviceFullExceptionThe device is full.
Microsoft.DirectX.DirectInput.MoreDataExceptionNot all the requested information fit into the buffer.
Microsoft.DirectX.DirectInput.NotDownloadedExceptionThe effect is not downloaded.
Microsoft.DirectX.DirectInput.HasEffectsExceptionThe device cannot be reinitialized because effects are attached to it.
Microsoft.DirectX.DirectInput.NotExclusivelyAcquiredExceptionThe operation cannot be performed unless the device is acquired in Exclusive mode.
Microsoft.DirectX.DirectInput.IncompleteEffectExceptionThe effect could not be downloaded because essential information is missing. For example, no axes have been associated with the effect, or no type-specific information has been supplied.
Microsoft.DirectX.DirectInput.NotBufferedExceptionThe device is not buffered. Set the BufferSize property to enable buffering.
Microsoft.DirectX.DirectInput.EffectPlayingExceptionThe parameters were updated in memory but were not downloaded to the device because the device does not support updating an effect while it is still playing.
Microsoft.DirectX.DirectInput.UnpluggedExceptionThe operation could not be completed because the device is not plugged in.
Microsoft.DirectX.DirectInput.ReportFullExceptionMore information was requested to be sent than can be sent to the device.
Microsoft.DirectX.DirectInput.MapFileFailExceptionAn error has occurred either reading the vendor-supplied action-mapping file for the device or reading or writing the user configuration mapping file for the device.

Microsoft.DirectX.DirectPlay

Microsoft.DirectX.DirectSound

Microsoft.DirectX.DirectSound.SoundExceptionRoot exception type for all Microsoft DirectSound exceptions. Derives from .
Microsoft.DirectX.DirectSound.AllocatedExceptionThe request failed because resources, such as a priority level, were already in use by another caller.
Microsoft.DirectX.DirectSound.ControlUnavailableExceptionThe buffer control (volume, pan, and so on) requested by the caller is not available. Controls must be specified when the buffer is created.
Microsoft.DirectX.DirectSound.InvalidCallExceptionThe method call is invalid. For example, a method's parameter might not be valid.
Microsoft.DirectX.DirectSound.PriorityLevelNeededExceptionA cooperative level of Priority or higher is required.
Microsoft.DirectX.DirectSound.BadFormatExceptionThe specified wave format is not supported.
Microsoft.DirectX.DirectSound.UnsupportedExceptionThe function called is not supported at this time.
Microsoft.DirectX.DirectSound.NoDriverExceptionNo sound driver is available for use, or the given globally unique identifier (GUID) is not a valid Microsoft DirectSound device ID.
Microsoft.DirectX.DirectSound.NoAggregationExceptionThe object does not support aggregation.
Microsoft.DirectX.DirectSound.BufferLostExceptionThe buffer memory has been lost and must be restored.
Microsoft.DirectX.DirectSound.OtherApplicationHasPriorityExceptionAnother application has a higher priority level, preventing this call from succeeding.
Microsoft.DirectX.DirectSound.AccessDeniedExceptionThe request failed because access was denied.
Microsoft.DirectX.DirectSound.BufferTooSmallExceptionThe buffer size is not large enough to enable effects processing.
Microsoft.DirectX.DirectSound.SendLoopExceptionA circular loop of send effects was detected.
Microsoft.DirectX.DirectSound.BadSendBufferGuidExceptionThe globally unique identifier (GUID) specified in an audiopath file does not match a valid mix-in buffer.
Microsoft.DirectX.DirectSound.ObjectNotFoundExceptionThe requested object was not found.
Microsoft.DirectX.DirectSound.EffectsUnavailableExceptionThe effects requested could not be found on the system, or they are in the wrong order or in the wrong location; for example, an effect expected in hardware was found in software.

Microsoft.DirectX

Microsoft.DirectX.DirectXExceptionDescribes the root exception class for all Microsoft DirectX 9.0 for Managed Code exceptions.

Microsoft.DirectX.Direct3DX

Microsoft.DirectX.Direct3D.Direct3DXExceptionBase exception class for D3DX. Derives from .
Microsoft.DirectX.Direct3D.CannotModifyIndexBufferExceptionThe index buffer cannot be modified.
Microsoft.DirectX.Direct3D.InvalidMeshExceptionThe mesh is invalid.
Microsoft.DirectX.Direct3D.CannotAttributeSortExceptionAttribute sort is not supported as an optimization technique. For more information, see .
Microsoft.DirectX.Direct3D.SkinningNotSupportedExceptionSkinning is not supported.
Microsoft.DirectX.Direct3D.TooManyInfluencesExceptionToo many influences specified.
Microsoft.DirectX.Direct3D.InvalidDataExceptionThe data is invalid.
Microsoft.DirectX.Direct3D.LoadedMeshHasNoDataExceptionThe mesh has no data.
Microsoft.DirectX.Direct3D.DuplicateNamedFragmentExceptionThere is a duplicate named fragment.

PresentationCore

System.Windows.Media.InvalidWmpVersionException

PresentationFramework

System.Windows.Controls.PrintDialogException
System.Windows.ResourceReferenceKeyNotFoundException
System.Windows.Markup.XamlParseException

ReachFramework

System.Printing.PrintSystemException
System.Printing.PrintQueueException
System.Printing.PrintServerException
System.Printing.PrintCommitAttributesException
System.Printing.PrintJobException
System.Printing.PrintingCanceledException
System.Windows.Xps.XpsException
System.Windows.Xps.XpsPackagingException
System.Windows.Xps.XpsSerializationException

System.IdentityModel

System.IdentityModel.Tokens.SecurityTokenException
System.IdentityModel.Tokens.SecurityTokenValidationException

System.IdentityModel.Selectors

System.IdentityModel.Selectors.CardSpaceException
System.IdentityModel.Selectors.ServiceNotStartedException
System.IdentityModel.Selectors.StsCommunicationException
System.IdentityModel.Selectors.UntrustedRecipientException
System.IdentityModel.Selectors.UserCancellationException
System.IdentityModel.Selectors.ServiceBusyException
System.IdentityModel.Selectors.IdentityValidationException
System.IdentityModel.Selectors.PolicyValidationException
System.IdentityModel.Selectors.UnsupportedPolicyOptionsException

System.IO.Log

System.IO.Log.ReservationNotFoundException
System.IO.Log.SequenceFullException

System.Printing

System.Windows.Xps.XpsWriterException

System.Runtime.Serialization

System.Runtime.Serialization.InvalidDataContractException

System.ServiceModel

System.ServiceModel.CommunicationException
System.ServiceModel.ActionNotSupportedException
System.ServiceModel.ProtocolException
System.ServiceModel.AddressAlreadyInUseException
System.ServiceModel.AddressAccessDeniedException
System.ServiceModel.ChannelTerminatedException
System.ServiceModel.CommunicationObjectAbortedException
System.ServiceModel.CommunicationObjectFaultedException
System.ServiceModel.EndpointNotFoundException
System.ServiceModel.ServerTooBusyException
System.ServiceModel.ServiceActivationException
System.IO.PipeException
System.ServiceModel.QuotaExceededException
System.ServiceModel.Dispatcher.FilterInvalidBodyAccessException
System.ServiceModel.Dispatcher.MessageFilterException
System.ServiceModel.Dispatcher.MultipleFilterMatchesException
System.ServiceModel.Dispatcher.NavigatorInvalidBodyAccessException
System.ServiceModel.Dispatcher.XPathNavigatorException
System.ServiceModel.MsmqException
System.ServiceModel.PoisonMessageException
System.ServiceModel.MsmqPoisonMessageException
System.ServiceModel.Security.MessageSecurityException
System.ServiceModel.Security.SecurityAccessDeniedException
System.ServiceModel.Security.ExpiredSecurityTokenException
System.ServiceModel.Security.SecurityNegotiationException
System.ServiceModel.InvalidMessageContractException
System.ServiceModel.FaultException
System.ServiceModel.FaultException`1[TDetail]
System.ServiceModel.MessageHeaderException
System.ServiceModel.Channels.InvalidChannelBindingException

System.Workflow.Activities

System.Workflow.Activities.WorkflowAuthorizationException
System.Workflow.Activities.Rules.RuleException
System.Workflow.Activities.Rules.RuleEvaluationException
System.Workflow.Activities.Rules.RuleEvaluationIncompatibleTypesException
System.Workflow.Activities.Rules.RuleSetValidationException
System.Workflow.Activities.EventDeliveryFailedException

System.Workflow.ComponentModel

System.Workflow.ComponentModel.WorkflowTerminatedException
System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationException
System.Workflow.ComponentModel.Compiler.WorkflowValidationFailedException

System.Workflow.Runtime

System.Workflow.Runtime.Hosting.PersistenceException
System.Workflow.Runtime.Tracking.TrackingProfileDeserializationException
System.Workflow.Runtime.WorkflowOwnershipException

UIAutomationTypes

System.Windows.Automation.ProxyAssemblyNotLoadedException
System.Windows.Automation.NoClickablePointException
System.Windows.Automation.ElementNotEnabledException
System.Windows.Automation.ElementNotAvailableException

WindowsBase

System.IO.FileFormatException
System.Security.RightsManagement.RightsManagementException

Microsoft.Build.Engine

Microsoft.Build.BuildEngine.InternalLoggerExceptionThis exception is used to wrap an unhandled exception from a logger.
Microsoft.Build.BuildEngine.InvalidProjectFileExceptionThis exception is thrown whenever there is a problem with the user's XML project file. The problem might be semantic or syntactical. If the problem is in the syntax, it can typically be caught by XSD validation.
Microsoft.Build.BuildEngine.InvalidToolsetDefinitionExceptionThis exception is thrown whenever there is a problem with the user's custom toolset definition file. The problem might be semantic or syntactical. If the problem is in the syntax, it can typically be caught by XSD validation.

Microsoft.Build.Framework

Microsoft.Build.Framework.LoggerExceptionAllows a logger to force the build to stop in an explicit way.

System.AddIn

System.AddIn.Hosting.AddInSegmentDirectoryNotFoundExceptionThe exception that is thrown when a segment directory is missing from the pipeline directory structure.
System.AddIn.Hosting.InvalidPipelineStoreExceptionThe exception that is thrown when a directory is not found and the user does not have permission to access the pipeline root path or an add-in path.

System.Core

System.Management.Instrumentation.InstrumentationBaseExceptionRepresents the base provider-related exception.
System.Management.Instrumentation.InstrumentationExceptionRepresents a provider-related exception.
System.Management.Instrumentation.InstanceNotFoundExceptionThe exception thrown to indicate that no instances are returned by a provider.
System.Diagnostics.Eventing.Reader.EventLogExceptionRepresents the base class for all the exceptions that are thrown when an error occurs while reading event log related information.
System.Diagnostics.Eventing.Reader.EventLogNotFoundExceptionRepresents the exception that is thrown when a requested event log (usually specified by the name of the event log or the path to the event log file) does not exist.
System.Diagnostics.Eventing.Reader.EventLogReadingExceptionRepresents an exception that is thrown when an error occurred while reading, querying, or subscribing to the events in an event log.
System.Diagnostics.Eventing.Reader.EventLogProviderDisabledExceptionRepresents the exception that is thrown when a specified event provider name references a disabled event provider. A disabled event provider cannot publish events.
System.Diagnostics.Eventing.Reader.EventLogInvalidDataExceptionRepresents the exception thrown when an event provider publishes invalid data in an event.
System.TimeZoneNotFoundExceptionThe exception that is thrown when a time zone cannot be found.
System.InvalidTimeZoneExceptionThe exception that is thrown when time zone information is invalid.
System.Threading.LockRecursionExceptionThe exception that is thrown when recursive entry into a lock is not compatible with the recursion policy for the lock.

System.Data.Linq

System.Data.Linq.ChangeConflictExceptionThrown when an update fails because database values have been updated since the client last read them.
System.Data.Linq.DuplicateKeyExceptionThrown when an attempt is made to add an object to the identity cache by using a key that is already being used.
System.Data.Linq.ForeignKeyReferenceAlreadyHasValueExceptionThrown when an attempt is made to change a foreign key but the entity is already loaded.

System.DirectoryServices.AccountManagement

System.DirectoryServices.AccountManagement.MultipleMatchesExceptionThis exception is thrown by methods that expect to match a single principal object when there are multiple matches to the search query.
System.DirectoryServices.AccountManagement.NoMatchingPrincipalExceptionThis exception is thrown when no matching principal object could be found with the specified parameters.
System.DirectoryServices.AccountManagement.PasswordExceptionThis exception is thrown when a password does not meet complexity requirements.
System.DirectoryServices.AccountManagement.PrincipalExistsExceptionThrown by when an attempt is made to insert a principal that already exists in the collection, or by when an attempt is made to save a new principal that already exists in the store.
System.DirectoryServices.AccountManagement.PrincipalServerDownExceptionThrown when the server
System.DirectoryServices.AccountManagement.PrincipalOperationExceptionThrown when ADSI returns an error during an operation to update the store.

System.Management.Instrumentation

System.Management.Instrumentation.WmiProviderInstallationExceptionRepresents an exception to throw when WMI provider installation fails.

System.Net

System.Net.PeerToPeer.PeerToPeerExceptionRepresents the exceptions that are thrown when an error is raised by the Peer-to-Peer Infrastructure.

System.ServiceModel.Web

System.UriTemplateMatchExceptionRepresents an error when matching a to a .

System.Web.Extensions

System.Web.Query.Dynamic.ParseExceptionRepresents errors that occur when a control parses values to create a query.
System.Web.UI.WebControls.LinqDataSourceValidationExceptionDescribes an exception that occurred during validation of new or modified values before values are inserted, updated, or deleted by a control.

System.WorkflowServices

System.ServiceModel.Persistence.PersistenceExceptionThis exception is thrown by a when general connectivity errors are encountered.
System.ServiceModel.Persistence.InstanceLockExceptionThis exception is intended for use by classes that inherit from when the operation cannot be performed because of the state of the instance lock.
System.ServiceModel.Persistence.InstanceNotFoundExceptionThis exception is thrown under the following circumstances: an operation is performed on a durable service instance that has been marked for completion, or a persistence provider created by a attempts to lock, unlock, or otherwise process state data that is not found in the database.

System.Data.SqlServerCe

System.Data.SqlServerCe.SqlCeLockTimeoutException
System.Data.SqlServerCe.SqlCeTransactionInProgressException
System.Data.SqlServerCe.SqlCeInvalidDatabaseFormatException

Microsoft.Synchronization.Data

Microsoft.Synchronization.Data.SyncException
Microsoft.Synchronization.Data.SchemaException
Microsoft.Synchronization.Data.MetadataException
Microsoft.Synchronization.Data.AnchorException
Microsoft.Synchronization.Data.SessionVariableException

Microsoft.Web.Services2

Microsoft.Web.Services2.AsynchronousOperationException
Microsoft.Web.Services2.SoapFormatException
Microsoft.Web.Services2.Addressing.AddressingFault
Microsoft.Web.Services2.Addressing.AddressingFormatException
Microsoft.Web.Services2.Dime.DimeFormatException
Microsoft.Web.Services2.Policy.PolicyDocumentException
Microsoft.Web.Services2.Policy.PolicyEnforcementException
Microsoft.Web.Services2.Policy.PolicyParserException
Microsoft.Web.Services2.Policy.PolicyVerificationException
Microsoft.Web.Services2.Referral.ReferralException
Microsoft.Web.Services2.Referral.ReferralFormatException
Microsoft.Web.Services2.Security.SecurityFault
Microsoft.Web.Services2.Security.SecurityFormatException
Microsoft.Web.Services2.Security.TrustFault
Microsoft.Web.Services2.Security.TrustFormatException
Microsoft.Web.Services2.Security.Utility.TimestampFormatException

Microsoft.SqlServer.ConnectionInfo

Microsoft.SqlServer.Management.Common.SqlServerManagementException
Microsoft.SqlServer.Management.Trace.SqlTraceException
Microsoft.SqlServer.Management.Trace.SqlTraceFailToLoadInstAPIAssemblyException
Microsoft.SqlServer.Management.Trace.SqlTraceFailToInstantiateTypeException
Microsoft.SqlServer.Management.Common.ConnectionException
Microsoft.SqlServer.Management.Common.ConnectionCannotBeChangedException
Microsoft.SqlServer.Management.Common.InvalidPropertyValueException
Microsoft.SqlServer.Management.Common.ConnectionFailureException
Microsoft.SqlServer.Management.Common.ExecutionFailureException
Microsoft.SqlServer.Management.Common.NotInTransactionException
Microsoft.SqlServer.Management.Common.InvalidArgumentException
Microsoft.SqlServer.Management.Common.PropertyNotSetException
Microsoft.SqlServer.Management.Common.PropertyNotAvailableException
Microsoft.SqlServer.Management.Common.ChangePasswordFailureException
Microsoft.SqlServer.Management.Common.TransferException

Microsoft.SqlServer.RegSvrEnum

Microsoft.SqlServer.Management.Smo.RegSvrEnum.RegisteredServerException

Microsoft.SqlServer.Replication

Microsoft.SqlServer.Replication.ComErrorException
Microsoft.SqlServer.Replication.ReplicationAgentException
Microsoft.SqlServer.Replication.ConnectionFailureException
Microsoft.SqlServer.Replication.NativeSqlConnectionException
Microsoft.SqlServer.Replication.OciException
Microsoft.SqlServer.Replication.FciException
Microsoft.SqlServer.Replication.OSException
Microsoft.SqlServer.Replication.ReplicationAgentContainerException
Microsoft.SqlServer.Replication.ReplicationAgentContainerWithWatsonException
Microsoft.SqlServer.Replication.PasswordWriteOnlyException
Microsoft.SqlServer.Replication.ParameterValueOutOfRangeException

Microsoft.SqlServer.Smo

Microsoft.SqlServer.Management.Smo.SmoException
Microsoft.SqlServer.Management.Smo.MissingObjectException
Microsoft.SqlServer.Management.Smo.PropertyNotSetException
Microsoft.SqlServer.Management.Smo.WrongPropertyValueException
Microsoft.SqlServer.Management.Smo.PropertyTypeMismatchException
Microsoft.SqlServer.Management.Smo.UnknownPropertyException
Microsoft.SqlServer.Management.Smo.PropertyReadOnlyException
Microsoft.SqlServer.Management.Smo.PropertyWriteException
Microsoft.SqlServer.Management.Smo.InvalidSmoOperationException
Microsoft.SqlServer.Management.Smo.InvalidVersionSmoOperationException
Microsoft.SqlServer.Management.Smo.CollectionNotAvailableException
Microsoft.SqlServer.Management.Smo.PropertyCannotBeRetrievedException
Microsoft.SqlServer.Management.Smo.InternalSmoErrorException
Microsoft.SqlServer.Management.Smo.FailedOperationException
Microsoft.SqlServer.Management.Smo.UnsupportedObjectNameException
Microsoft.SqlServer.Management.Smo.ServiceRequestException
Microsoft.SqlServer.Management.Smo.UnsupportedVersionException
Microsoft.SqlServer.Management.Smo.UnsupportedFeatureException

Microsoft.SqlServer.SmoEnum

Microsoft.SqlServer.Management.Smo.EnumeratorException
Microsoft.SqlServer.Management.Smo.XPathException
Microsoft.SqlServer.Management.Smo.NotYetImplementedEnumeratorException
Microsoft.SqlServer.Management.Smo.InvalidQueryExpressionEnumeratorException
Microsoft.SqlServer.Management.Smo.InvalidConfigurationFileEnumeratorException
Microsoft.SqlServer.Management.Smo.UnknownPropertyEnumeratorException
Microsoft.SqlServer.Management.Smo.UnknownTypeEnumeratorException
Microsoft.SqlServer.Management.Smo.InternalEnumeratorException
Microsoft.SqlServer.Management.Smo.InvalidPropertyUsageEnumeratorException
Microsoft.SqlServer.Management.Smo.QueryNotSupportedEnumeratorException
Microsoft.SqlServer.Management.Smo.InvalidVersionEnumeratorException

vjsjbc

netscape.javascript.JSException

vjslib

com.ms.dll.Win32Exception
com.ms.lang.MulticastNotSupportedException
com.ms.lang.RegKeyException
com.ms.security.SecurityExceptionEx
com.ms.vjsharp.MethodNotSupportedException
java.io.CharConversionException
java.io.EOFException
java.io.FileNotFoundException
java.io.InterruptedIOException
java.io.InvalidClassException
java.io.InvalidObjectException
java.io.IOException
java.io.NotActiveException
java.io.NotSerializableException
java.io.ObjectStreamException
java.io.OptionalDataException
java.io.StreamCorruptedException
java.io.SyncFailedException
java.io.UnsupportedEncodingException
java.io.UTFDataFormatException
java.io.WriteAbortedException
java.lang.reflect.InvocationTargetException
java.net.BindException
java.net.ConnectException
java.net.MalformedURLException
java.net.NoRouteToHostException
java.net.ProtocolException
java.net.SocketException
java.net.UnknownHostException
java.net.UnknownServiceException
java.text.ParseException
java.util.zip.DataFormatException
java.util.zip.ZipException
java.lang.AbstractMethodError
java.lang.ArithmeticException
java.lang.ArrayIndexOutOfBoundsException
java.lang.ArrayStoreException
java.lang.ClassCastException
java.lang.ClassCircularityError
java.lang.ClassFormatError
java.lang.ClassNotFoundException
java.lang.CloneNotSupportedException
java.lang.Error
java.lang.Exception
java.lang.ExceptionInInitializerError
java.lang.IllegalAccessError
java.lang.IllegalAccessException
java.lang.IllegalArgumentException
java.lang.IllegalMonitorStateException
java.lang.IllegalStateException
java.lang.IllegalThreadStateException
java.lang.IncompatibleClassChangeError
java.lang.IndexOutOfBoundsException
java.lang.InstantiationError
java.lang.InstantiationException
java.lang.InternalError
java.lang.InterruptedException
java.lang.LinkageError
java.lang.NegativeArraySizeException
java.lang.NoClassDefFoundError
java.lang.NoSuchFieldError
java.lang.NoSuchFieldException
java.lang.NoSuchMethodError
java.lang.NoSuchMethodException
java.lang.NullPointerException
java.lang.NumberFormatException
java.lang.OutOfMemoryError
java.lang.RuntimeException
java.lang.SecurityException
java.lang.StackOverflowError
java.lang.StringIndexOutOfBoundsException
java.lang.ThreadDeath
java.lang.Throwable
java.lang.UnknownError
java.lang.UnsatisfiedLinkError
java.lang.VerifyError
java.lang.VirtualMachineError
java.util.EmptyStackException
java.util.MissingResourceException
java.util.NoSuchElementException
java.util.TooManyListenersException
java.util.ConcurrentModificationException
java.lang.UnsupportedOperationException
java.awt.AWTError
java.awt.AWTException
java.awt.IllegalComponentStateException
java.awt.datatransfer.UnsupportedFlavorException
java.beans.IntrospectionException
java.beans.PropertyVetoException
com.ms.dll.ParameterCountMismatchError
com.ms.com.ComError
com.ms.com.ComException
com.ms.com.ComFailException
com.ms.com.ComSuccessException
com.ms.com.WrongThreadException
com.ms.vjsharp.lang.ThrowableWrapper
java.sql.DataTruncation
java.sql.SQLException
java.sql.SQLWarning
java.security.DigestException
java.security.InvalidKeyException
java.security.InvalidParameterException
java.security.KeyException
java.security.KeyManagementException
java.security.NoSuchAlgorithmException
java.security.NoSuchProviderException
java.security.ProviderException
java.security.SignatureException
java.security.acl.AclNotFoundException
java.security.acl.LastOwnerException
java.security.acl.NotOwnerException

VJSSupUILib

javax.swing.UnsupportedLookAndFeelException
javax.swing.text.BadLocationException
javax.swing.tree.ExpandVetoException
javax.swing.undo.CannotRedoException
javax.swing.undo.CannotUndoException

vjswfc

com.ms.vjsharp.object.ServiceNotFoundException
com.ms.wfc.core.WFCException
com.ms.wfc.core.WFCInvalidArgumentException
com.ms.wfc.core.WFCInvalidEnumException
com.ms.wfc.core.WFCInvalidPropertyValue
com.ms.wfc.core.WFCInvalidStateException
com.ms.wfc.core.WFCSystemException
com.ms.wfc.core.WFCWarning
com.ms.wfc.core.WFCWin32Exception
com.ms.wfc.data.AdoException
com.ms.wfc.io.EOFException
com.ms.wfc.io.IOException
com.ms.wfc.io.WinIOException
com.ms.wfc.util.EmptyEnumeratorException
com.ms.wfc.util.EmptyQueueException
com.ms.wfc.util.EmptyStackException

vjswfchtml

com.ms.wfc.html.DhCantAddElementException
com.ms.wfc.html.DhCantModifyElementException
com.ms.wfc.html.DhElementExistsInDocumentException
com.ms.wfc.html.DhElementNotFoundException