.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.SystemException | Defines the base class for predefined exceptions in the namespace. |
| System.OutOfMemoryException | The exception that is thrown when there is not enough memory to continue the execution of a program. |
| System.StackOverflowException | The exception that is thrown when the execution stack overflows by having too many pending method calls. This class cannot be inherited. |
| System.DataMisalignedException | The 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.ExecutionEngineException | The 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.MemberAccessException | The exception that is thrown when an attempt to access a class member fails. |
| System.AccessViolationException | The exception that is thrown when there is an attempt to read or write protected memory. |
| System.ApplicationException | The exception that is thrown when a non-fatal application error occurs. |
| System.AppDomainUnloadedException | The exception that is thrown when an attempt is made to access an unloaded application domain. |
| System.ArgumentException | The exception that is thrown when one of the arguments provided to a method is not valid. |
| System.ArgumentNullException | The 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.ArgumentOutOfRangeException | The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method. |
| System.ArithmeticException | The exception that is thrown for errors in an arithmetic, casting, or conversion operation. |
| System.ArrayTypeMismatchException | The exception that is thrown when an attempt is made to store an element of the wrong type within an array. |
| System.BadImageFormatException | The exception that is thrown when the file image of a DLL or an executable program is invalid. |
| System.CannotUnloadAppDomainException | The exception that is thrown when an attempt to unload an application domain fails. |
| System.TypeUnloadedException | The exception that is thrown when there is an attempt to access an unloaded class. |
| System.ContextMarshalException | The exception that is thrown when an attempt to marshal an object across a context boundary fails. |
| System.DivideByZeroException | The exception that is thrown when there is an attempt to divide an integral or decimal value by zero. |
| System.DuplicateWaitObjectException | The exception that is thrown when an object appears more than once in an array of synchronization objects. |
| System.TypeLoadException | The exception that is thrown when type-loading failures occur. |
| System.EntryPointNotFoundException | The exception that is thrown when an attempt to load a class fails due to the absence of an entry method. |
| System.DllNotFoundException | The exception that is thrown when a DLL specified in a DLL import cannot be found. |
| System.FieldAccessException | The exception that is thrown when there is an invalid attempt to access a private or protected field inside a class. |
| System.FormatException | The exception that is thrown when the format of an argument does not meet the parameter specifications of the invoked method. |
| System.IndexOutOfRangeException | The 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.InsufficientMemoryException | The exception that is thrown when a check for sufficient available memory fails. This class cannot be inherited. |
| System.InvalidCastException | The exception that is thrown for invalid casting or explicit conversion. |
| System.InvalidOperationException | The exception that is thrown when a method call is invalid for the object's current state. |
| System.InvalidProgramException | The 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.MethodAccessException | The exception that is thrown when there is an invalid attempt to access a private or protected method inside a class. |
| System.MissingMemberException | The exception that is thrown when there is an attempt to dynamically access a class member that does not exist. |
| System.MissingFieldException | The exception that is thrown when there is an attempt to dynamically access a field that does not exist. |
| System.MissingMethodException | The exception that is thrown when there is an attempt to dynamically access a method that does not exist. |
| System.MulticastNotSupportedException | The 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.NotFiniteNumberException | The exception that is thrown when a floating-point value is positive infinity, negative infinity, or Not-a-Number (NaN). |
| System.NotImplementedException | The exception that is thrown when a requested method or operation is not implemented. |
| System.NotSupportedException | The 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.NullReferenceException | The exception that is thrown when there is an attempt to dereference a null object reference. |
| System.ObjectDisposedException | The exception that is thrown when an operation is performed on a disposed object. |
| System.OperationCanceledException | The exception that is thrown in a thread upon cancellation of an operation that the thread was executing. |
| System.OverflowException | The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow. |
| System.PlatformNotSupportedException | The exception that is thrown when a feature does not run on a particular platform. |
| System.RankException | The exception that is thrown when an array with the wrong number of dimensions is passed to a method. |
| System.TimeoutException | The exception that is thrown when the time allotted for a process or operation has expired. |
| System.TypeInitializationException | The exception that is thrown as a wrapper around the exception thrown by the class initializer. This class cannot be inherited. |
| System.UnauthorizedAccessException | The 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.AbandonedMutexException | The exception that is thrown when one thread acquires a object that another thread has abandoned by exiting without releasing it. |
| System.Threading.SynchronizationLockException | The 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.ThreadInterruptedException | The exception that is thrown when a is interrupted while it is in a waiting state. |
| System.Threading.ThreadStateException | The exception that is thrown when a is in an invalid for the method call. |
| System.Threading.WaitHandleCannotBeOpenedException | The exception that is thrown when an attempt is made to open a system mutex or semaphore that does not exist. |
| System.Collections.Generic.KeyNotFoundException | The 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.AmbiguousMatchException | The 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.CustomAttributeFormatException | The exception that is thrown when the binary format of a custom attribute is invalid. |
| System.Reflection.InvalidFilterCriteriaException | The exception that is thrown in when the filter criteria is not valid for the type of filter you are using. |
| System.Reflection.ReflectionTypeLoadException | The 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.TargetException | Represents the exception that is thrown when an attempt is made to invoke an invalid target. |
| System.Reflection.TargetInvocationException | The exception that is thrown by methods invoked through reflection. This class cannot be inherited. |
| System.Reflection.TargetParameterCountException | The 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.SerializationException | The exception thrown when an error occurs during serialization or deserialization. |
| System.Text.DecoderFallbackException | The exception that is thrown when a decoder fallback operation fails. This class cannot be inherited. |
| System.Text.EncoderFallbackException | The exception that is thrown when an encoder fallback operation fails. This class cannot be inherited. |
| System.Resources.MissingManifestResourceException | The 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.MissingSatelliteAssemblyException | The exception that is thrown when the satellite assembly for the resources of the neutral culture is missing. |
| System.Security.Policy.PolicyException | The exception that is thrown when policy forbids code to run. |
| System.Runtime.InteropServices.ExternalException | The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions. |
| System.Runtime.InteropServices.COMException | The exception that is thrown when an unrecognized HRESULT is returned from a COM method call. |
| System.Runtime.InteropServices.InvalidOleVariantTypeException | The 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.MarshalDirectiveException | The exception that is thrown by the marshaler when it encounters a it does not support. |
| System.Runtime.InteropServices.SEHException | Represents Structured Exception Handler (SEH) errors. |
| System.Runtime.InteropServices.InvalidComObjectException | The exception thrown when an invalid COM object is used. |
| System.Runtime.InteropServices.SafeArrayRankMismatchException | The exception thrown when the rank of an incoming SAFEARRAY does not match the rank specified in the managed signature. |
| System.Runtime.InteropServices.SafeArrayTypeMismatchException | The exception thrown when the type of the incoming SAFEARRAY does not match the type specified in the managed signature. |
| System.IO.IOException | The exception that is thrown when an I/O error occurs. |
| System.IO.DirectoryNotFoundException | The exception that is thrown when part of a file or directory cannot be found. |
| System.IO.DriveNotFoundException | The exception that is thrown when trying to access a drive or share that is not available. |
| System.IO.EndOfStreamException | The exception that is thrown when reading is attempted past the end of a stream. |
| System.IO.FileLoadException | The exception that is thrown when a managed assembly is found but cannot be loaded. |
| System.IO.FileNotFoundException | The exception that is thrown when an attempt to access a file that does not exist on disk fails. |
| System.IO.PathTooLongException | The exception that is thrown when a pathname or filename is longer than the system-defined maximum length. |
| System.Security.XmlSyntaxException | The exception that is thrown when there is a syntax error in XML parsing. This class cannot be inherited. |
| System.Security.SecurityException | The exception that is thrown when a security error is detected. |
| System.Security.HostProtectionException | The exception that is thrown when a denied host resource is detected. |
| System.Security.VerificationException | The 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.RemotingException | The exception that is thrown when something has gone wrong during remoting. |
| System.Runtime.Remoting.ServerException | The 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.RemotingTimeoutException | The exception that is thrown when the server or the client cannot be reached for a previously specified period of time. |
| System.IO.IsolatedStorage.IsolatedStorageException | The exception that is thrown when an operation in isolated storage fails. |
| System.Security.Cryptography.CryptographicException | The exception that is thrown when an error occurs during a cryptographic operation. |
| System.Security.Cryptography.CryptographicUnexpectedOperationException | The exception that is thrown when an unexpected operation occurs during a cryptographic operation. |
| System.Security.AccessControl.PrivilegeNotHeldException | The exception that is thrown when a method in the namespace attempts to enable a privilege that it does not have. |
| System.Security.Principal.IdentityNotMappedException | Represents an exception for a principal whose identity could not be mapped to a known identity. |
Microsoft.Build.Engine
| Microsoft.Build.BuildEngine.InvalidProjectFileException | This 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.InternalLoggerException | This exception is used to wrap an unhandled exception from a logger. |
Microsoft.Build.Framework
| Microsoft.Build.Framework.LoggerException | Allows 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.NoStartupFormException | This exception is thrown by the Visual Basic Application Model when the property has not been set. |
| Microsoft.VisualBasic.ApplicationServices.CantStartSingleInstanceException | This exception is thrown when a subsequent instance of a single-instance application is unable to connect to the first application instance. |
| Microsoft.VisualBasic.FileIO.MalformedLineException | The 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.ConfigurationErrorsException | The exception that is thrown when a configuration-system error has occurred. |
| System.Configuration.Provider.ProviderException | The 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.InstallException | The exception that is thrown when an error occurs during the commit, rollback, or uninstall phase of an installation. |
System.Data
| System.Data.DataException | Represents the exception that is thrown when errors are generated using ADO.NET components. |
| System.Data.ConstraintException | Represents the exception that is thrown when attempting an action that violates a constraint. |
| System.Data.DeletedRowInaccessibleException | Represents the exception that is thrown when an action is tried on a that has been deleted. |
| System.Data.DuplicateNameException | Represents the exception that is thrown when a duplicate database object name is encountered during an add operation in a -related object. |
| System.Data.InRowChangingEventException | Represents the exception that is thrown when you call the method within the event. |
| System.Data.InvalidConstraintException | Represents the exception that is thrown when incorrectly trying to create or access a relation. |
| System.Data.MissingPrimaryKeyException | Represents the exception that is thrown when you try to access a row in a table that has no primary key. |
| System.Data.NoNullAllowedException | Represents the exception that is thrown when you try to insert a null value into a column where is set to false. |
| System.Data.ReadOnlyException | Represents the exception that is thrown when you try to change the value of a read-only column. |
| System.Data.RowNotInTableException | Represents the exception that is thrown when you try to perform an operation on a that is not in a . |
| System.Data.VersionNotFoundException | Represents the exception that is thrown when you try to return a version of a that has been deleted. |
| System.Data.DBConcurrencyException | The exception that is thrown by the during an insert, update, or delete operation if the number of rows affected equals zero. |
| System.Data.StrongTypingException | The exception that is thrown by a strongly typed when the user accesses a DBNull value. |
| System.Data.TypedDataSetGeneratorException | The exception that is thrown when a name conflict occurs while generating a strongly typed . |
| System.Data.InvalidExpressionException | Represents the exception that is thrown when you try to add a that contains an invalid to a . |
| System.Data.EvaluateException | Represents the exception that is thrown when the property of a cannot be evaluated. |
| System.Data.SyntaxErrorException | Represents the exception that is thrown when the property of a contains a syntax error. |
| System.Data.SqlTypes.SqlTypeException | The base exception class for the . |
| System.Data.SqlTypes.SqlNullValueException | The exception that is thrown when the Value property of a structure is set to null. |
| System.Data.SqlTypes.SqlTruncateException | The exception that is thrown when you set a value into a structure would truncate that value. |
| System.Data.SqlTypes.SqlNotFilledException | The 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.SqlAlreadyFilledException | The 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.DeploymentException | Defines a base class for all deployment-related exceptions. |
| System.Deployment.Application.InvalidDeploymentException | Indicates that ClickOnce could not read either the deployment or application manifests. |
| System.Deployment.Application.DeploymentDownloadException | Indicates that there was an error downloading either the ClickOnce manifests or the deployment's files to the client computer. |
| System.Deployment.Application.TrustNotGrantedException | Indicates 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.TypedDataSetGeneratorException | The exception that is thrown when a name conflict occurs while generating a strongly typed . |
| System.ComponentModel.Design.Serialization.CodeDomSerializerException | The exception that is thrown when line number information is available for a serialization error. |
| System.ComponentModel.Design.ExceptionCollection | Represents the collection of exceptions. |
System.DirectoryServices
| System.DirectoryServices.DirectoryServicesCOMException | Contains extended error information about an error that occurred when the method is called. |
| System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException | The class exception is thrown when a requested object is not found in the underlying directory store. |
| System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException | The class exception is thrown when an underlying directory operation fails. |
| System.DirectoryServices.ActiveDirectory.ActiveDirectoryServerDownException | The class exception is thrown when a server is unavailable to respond to a service request. |
| System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectExistsException | The class exception is thrown when an Active Directory object is created and that object already exists in the underlying directory store. |
| System.DirectoryServices.ActiveDirectory.SyncFromAllServersOperationException | The exception is thrown when the request to synchronize from all servers fails. |
| System.DirectoryServices.ActiveDirectory.ForestTrustCollisionException | The class exception is thrown when a trust collision occurs during a trust relationship management request. |
System.DirectoryServices.Protocols
| System.DirectoryServices.Protocols.DirectoryException | The class is an abstract class used as the base class for all exceptions. |
| System.DirectoryServices.Protocols.DirectoryOperationException | The class is an exception thrown by the method to indicate that the server returned a object with an error. |
| System.DirectoryServices.Protocols.BerConversionException | The class is an exception thrown when converting data using a object. |
| System.DirectoryServices.Protocols.DsmlInvalidDocumentException | The 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.ErrorResponseException | The class is an exception that occurs when the server returns an |
| System.DirectoryServices.Protocols.LdapException | The class is an exception that occurs when LDAP returns an error code not included in . |
| System.DirectoryServices.Protocols.TlsOperationException | The class is an exception that occurs in the method if the request fails. |
System
| System.ComponentModel.InvalidAsynchronousStateException | |
| System.ComponentModel.InvalidEnumArgumentException | The exception thrown when using invalid arguments that are enumerators. |
| System.ComponentModel.LicenseException | Represents the exception thrown when a component cannot be granted a license. |
| System.ComponentModel.WarningException | Specifies an exception that is handled as a warning instead of an error. |
| System.ComponentModel.Win32Exception | Throws an exception for a Win32 error code. |
| System.ComponentModel.Design.CheckoutException | The 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.InvalidDataException | The exception that is thrown when a data stream is in an invalid format. |
| System.Threading.SemaphoreFullException | The exception that is thrown when the method is called on a semaphore whose count is already at the maximum. |
| System.UriFormatException | The exception that is thrown when an invalid Uniform Resource Identifier (URI) is detected. |
| System.Net.CookieException | The exception that is thrown when an error is made adding a to a . |
| System.Net.HttpListenerException | The exception that is thrown when an error occurs processing an HTTP request. |
| System.Net.ProtocolViolationException | The exception that is thrown when an error is made while using a network protocol. |
| System.Net.Sockets.SocketException | The exception that is thrown when a socket error occurs. |
| System.Net.WebException | The exception that is thrown when an error occurs while accessing the network through a pluggable protocol. |
| System.Security.Authentication.AuthenticationException | The exception that is thrown when authentication fails for an authentication stream. |
| System.Security.Authentication.InvalidCredentialException | The exception that is thrown when authentication fails for an authentication stream and cannot be retried. |
| System.Net.NetworkInformation.NetworkInformationException | The exception that is thrown when an error occurs while retrieving network information. |
| System.Net.NetworkInformation.PingException | The exception that is thrown when a or method calls a method that throws an exception. |
| System.Net.Mail.SmtpException | Represents the exception that is thrown when the is not able to complete a or operation. |
| System.Net.Mail.SmtpFailedRecipientException | Represents the exception that is thrown when the is not able to complete a or operation to a particular recipient. |
| System.Net.Mail.SmtpFailedRecipientsException | The exception that is thrown when e-mail is sent using an and cannot be delivered to all recipients. |
| System.Configuration.ConfigurationException | The exception that is thrown when a configuration system error has occurred. |
| System.Configuration.SettingsPropertyIsReadOnlyException | Provides an exception for read-only objects. |
| System.Configuration.SettingsPropertyNotFoundException | Provides an exception for objects that are not found. |
| System.Configuration.SettingsPropertyWrongTypeException | Provides an exception that is thrown when an invalid type is used with a object. |
| System.IO.InternalBufferOverflowException | The exception thrown when the internal buffer overflows. |
System.Drawing
| System.Drawing.Printing.InvalidPrinterException | Represents the exception that is thrown when you try to access a printer using printer settings that are not valid. |
System.EnterpriseServices
| System.EnterpriseServices.ServicedComponentException | The exception that is thrown when an error is detected in a serviced component. |
| System.EnterpriseServices.RegistrationException | The exception that is thrown when a registration error is detected. |
System.Management
| System.Management.ManagementException | Represents management exceptions. |
System.ServiceProcess
| System.ServiceProcess.TimeoutException | The exception that is thrown when a specified timeout has expired. |
System.Transactions
| System.Transactions.TransactionException | The exception that is thrown when you attempt to do work on a transaction that cannot accept new work. |
| System.Transactions.TransactionAbortedException | The 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.TransactionInDoubtException | The 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.TransactionManagerCommunicationException | The exception that is thrown when a resource manager cannot communicate with the transaction manager. |
| System.Transactions.TransactionPromotionException | The exception that is thrown when a promotion fails. |
System.Web
| System.Web.HttpException | Describes an exception that occurred during the processing of HTTP requests. |
| System.Web.HttpUnhandledException | The exception that is thrown when a generic exception occurs. |
| System.Web.HttpCompileException | The exception that is thrown when a compiler error occurs. |
| System.Web.HttpParseException | The exception that is thrown when a parse error occurs. |
| System.Web.HttpRequestValidationException | The 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.DatabaseNotEnabledForNotificationException | The 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.TableNotEnabledForNotificationException | The exception that is thrown when a class is used against a database table that is not enabled for change notifications. |
| System.Web.Management.SqlExecutionException | Defines a class for SQL execution exceptions in the namespace. |
| System.Web.Security.MembershipCreateUserException | The exception that is thrown when a user is not successfully created by a membership provider. |
| System.Web.Security.MembershipPasswordException | The exception that is thrown when a password cannot be retrieved from the password store. |
| System.Web.UI.ViewStateException | Represents 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.SoapException | Represents the exception that is thrown when an XML Web service method is called over SOAP and an exception occurs. |
| System.Web.Services.Protocols.SoapHeaderException | The SOAP representation of a server error. |
System.Xml
| System.Xml.XmlException | Returns detailed information about the last exception. |
| System.Xml.XPath.XPathException | Provides the exception thrown when an error occurs while processing an XPath expression. |
| System.Xml.Xsl.XsltException | The exception that is thrown when an error occurs while processing an XSLT transformation. |
| System.Xml.Xsl.XsltCompileException | The exception that is thrown by the Load method when an error is found in the XSLT style sheet. |
| System.Xml.Schema.XmlSchemaException | Returns detailed information about the schema exception. |
| System.Xml.Schema.XmlSchemaValidationException | Represents 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.XmlSchemaInferenceException | Returns information about errors encountered by the class while inferring a schema from an XML document. |
Microsoft.DirectX.Direct3D
| Microsoft.DirectX.Direct3D.GraphicsException | Base exception type for graphics. Derives from . |
| Microsoft.DirectX.Direct3D.WrongTextureFormatException | The pixel format of the texture surface is not valid. |
| Microsoft.DirectX.Direct3D.UnsupportedColorOperationException | The device does not support a specified texture-blending operation for color values. |
| Microsoft.DirectX.Direct3D.UnsupportedColorArgumentException | The device does not support a specified texture-blending argument for color values. |
| Microsoft.DirectX.Direct3D.UnsupportedAlphaOperationException | The device does not support a specified texture-blending operation for the alpha channel. |
| Microsoft.DirectX.Direct3D.UnsupportedAlphaArgumentException | The device does not support a specified texture-blending argument for the alpha channel. |
| Microsoft.DirectX.Direct3D.TooManyOperationsException | The application is requesting more texture-filtering operations than the device supports. |
| Microsoft.DirectX.Direct3D.ConflictingTextureFilterException | The current texture filters cannot be used together. |
| Microsoft.DirectX.Direct3D.UnsupportedFactorValueException | The device does not support the specified texture factor value. Not used; provided only to support older drivers. |
| Microsoft.DirectX.Direct3D.ConflictingRenderStateException | The currently set render states cannot be used together. |
| Microsoft.DirectX.Direct3D.UnsupportedTextureFilterException | The device does not support the specified texture filter. |
| Microsoft.DirectX.Direct3D.ConflictingTexturePaletteException | The current textures cannot be used simultaneously. |
| Microsoft.DirectX.Direct3D.DriverInternalErrorException | Internal driver error. Applications should generally shut down when receiving this error. |
| Microsoft.DirectX.Direct3D.NotFoundException | The requested item was not found. |
| Microsoft.DirectX.Direct3D.MoreDataException | More data is available than the specified buffer size can hold. |
| Microsoft.DirectX.Direct3D.DeviceLostException | The device has been lost but cannot be reset at this time. Therefore, rendering is not possible. |
| Microsoft.DirectX.Direct3D.DeviceNotResetException | The device has been lost but can be reset at this time. |
| Microsoft.DirectX.Direct3D.NotAvailableException | This device does not support the queried technique. |
| Microsoft.DirectX.Direct3D.OutOfVideoMemoryException | Microsoft Direct3D does not have enough display memory to perform the operation. |
| Microsoft.DirectX.Direct3D.InvalidDeviceException | The requested device type is not valid. |
| Microsoft.DirectX.Direct3D.InvalidCallException | The method call is invalid. For example, a method's parameter might not be valid. |
| Microsoft.DirectX.Direct3D.DriverInvalidCallException | The driver reports that the current method call is invalid. |
| Microsoft.DirectX.Direct3D.WasStillDrawingException | The device was still drawing. |
Microsoft.DirectX.Direct3DX
| Microsoft.DirectX.Direct3D.Direct3DXException | Base exception class for D3DX. Derives from . |
| Microsoft.DirectX.Direct3D.CannotModifyIndexBufferException | The index buffer cannot be modified. |
| Microsoft.DirectX.Direct3D.InvalidMeshException | The mesh is invalid. |
| Microsoft.DirectX.Direct3D.CannotAttributeSortException | Attribute sort is not supported as an optimization technique. For more information, see . |
| Microsoft.DirectX.Direct3D.SkinningNotSupportedException | Skinning is not supported. |
| Microsoft.DirectX.Direct3D.TooManyInfluencesException | Too many influences specified. |
| Microsoft.DirectX.Direct3D.InvalidDataException | The data is invalid. |
| Microsoft.DirectX.Direct3D.LoadedMeshHasNoDataException | The mesh has no data. |
| Microsoft.DirectX.Direct3D.DuplicateNamedFragmentException | There is a duplicate named fragment. |
Microsoft.DirectX.DirectDraw
Microsoft.DirectX.DirectInput
| Microsoft.DirectX.DirectInput.InputException | Base exception type for all DirectInput exceptions. Derives from DirectXException. |
| Microsoft.DirectX.DirectInput.BadDriverVersionException | The object could not be created due to an incompatible driver version or mismatched or incomplete driver components. |
| Microsoft.DirectX.DirectInput.DeviceNotRegisteredException | The device or device instance is not registered with DirectInput. |
| Microsoft.DirectX.DirectInput.NotFoundException | The requested object does not exist. |
| Microsoft.DirectX.DirectInput.UnsupportedException | The function called is not supported at this time. |
| Microsoft.DirectX.DirectInput.OtherApplicationHasPriorityException | Another application has a higher priority level, preventing this call from succeeding. |
| Microsoft.DirectX.DirectInput.InputLostException | Access to the input device has been lost. It must be reacquired. |
| Microsoft.DirectX.DirectInput.AcquiredException | The operation cannot be performed while the device is acquired. |
| Microsoft.DirectX.DirectInput.NotAcquiredException | The operation cannot be performed unless the device is acquired. |
| Microsoft.DirectX.DirectInput.PendingException | Data is not yet available. |
| Microsoft.DirectX.DirectInput.InsufficientPriveledgesException | Insufficient priveledges for this call. |
| Microsoft.DirectX.DirectInput.DeviceFullException | The device is full. |
| Microsoft.DirectX.DirectInput.MoreDataException | Not all the requested information fit into the buffer. |
| Microsoft.DirectX.DirectInput.NotDownloadedException | The effect is not downloaded. |
| Microsoft.DirectX.DirectInput.HasEffectsException | The device cannot be reinitialized because effects are attached to it. |
| Microsoft.DirectX.DirectInput.NotExclusivelyAcquiredException | The operation cannot be performed unless the device is acquired in Exclusive mode. |
| Microsoft.DirectX.DirectInput.IncompleteEffectException | The 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.NotBufferedException | The device is not buffered. Set the BufferSize property to enable buffering. |
| Microsoft.DirectX.DirectInput.EffectPlayingException | The 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.UnpluggedException | The operation could not be completed because the device is not plugged in. |
| Microsoft.DirectX.DirectInput.ReportFullException | More information was requested to be sent than can be sent to the device. |
| Microsoft.DirectX.DirectInput.MapFileFailException | An 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.SoundException | Root exception type for all Microsoft DirectSound exceptions. Derives from . |
| Microsoft.DirectX.DirectSound.AllocatedException | The request failed because resources, such as a priority level, were already in use by another caller. |
| Microsoft.DirectX.DirectSound.ControlUnavailableException | The 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.InvalidCallException | The method call is invalid. For example, a method's parameter might not be valid. |
| Microsoft.DirectX.DirectSound.PriorityLevelNeededException | A cooperative level of Priority or higher is required. |
| Microsoft.DirectX.DirectSound.BadFormatException | The specified wave format is not supported. |
| Microsoft.DirectX.DirectSound.UnsupportedException | The function called is not supported at this time. |
| Microsoft.DirectX.DirectSound.NoDriverException | No sound driver is available for use, or the given globally unique identifier (GUID) is not a valid Microsoft DirectSound device ID. |
| Microsoft.DirectX.DirectSound.NoAggregationException | The object does not support aggregation. |
| Microsoft.DirectX.DirectSound.BufferLostException | The buffer memory has been lost and must be restored. |
| Microsoft.DirectX.DirectSound.OtherApplicationHasPriorityException | Another application has a higher priority level, preventing this call from succeeding. |
| Microsoft.DirectX.DirectSound.AccessDeniedException | The request failed because access was denied. |
| Microsoft.DirectX.DirectSound.BufferTooSmallException | The buffer size is not large enough to enable effects processing. |
| Microsoft.DirectX.DirectSound.SendLoopException | A circular loop of send effects was detected. |
| Microsoft.DirectX.DirectSound.BadSendBufferGuidException | The globally unique identifier (GUID) specified in an audiopath file does not match a valid mix-in buffer. |
| Microsoft.DirectX.DirectSound.ObjectNotFoundException | The requested object was not found. |
| Microsoft.DirectX.DirectSound.EffectsUnavailableException | The 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.DirectXException | Describes the root exception class for all Microsoft DirectX 9.0 for Managed Code exceptions. |
Microsoft.DirectX.Direct3DX
| Microsoft.DirectX.Direct3D.Direct3DXException | Base exception class for D3DX. Derives from . |
| Microsoft.DirectX.Direct3D.CannotModifyIndexBufferException | The index buffer cannot be modified. |
| Microsoft.DirectX.Direct3D.InvalidMeshException | The mesh is invalid. |
| Microsoft.DirectX.Direct3D.CannotAttributeSortException | Attribute sort is not supported as an optimization technique. For more information, see . |
| Microsoft.DirectX.Direct3D.SkinningNotSupportedException | Skinning is not supported. |
| Microsoft.DirectX.Direct3D.TooManyInfluencesException | Too many influences specified. |
| Microsoft.DirectX.Direct3D.InvalidDataException | The data is invalid. |
| Microsoft.DirectX.Direct3D.LoadedMeshHasNoDataException | The mesh has no data. |
| Microsoft.DirectX.Direct3D.DuplicateNamedFragmentException | There 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.InternalLoggerException | This exception is used to wrap an unhandled exception from a logger. |
| Microsoft.Build.BuildEngine.InvalidProjectFileException | This 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.InvalidToolsetDefinitionException | This 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.LoggerException | Allows a logger to force the build to stop in an explicit way. |
System.AddIn
| System.AddIn.Hosting.AddInSegmentDirectoryNotFoundException | The exception that is thrown when a segment directory is missing from the pipeline directory structure. |
| System.AddIn.Hosting.InvalidPipelineStoreException | The 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.InstrumentationBaseException | Represents the base provider-related exception. |
| System.Management.Instrumentation.InstrumentationException | Represents a provider-related exception. |
| System.Management.Instrumentation.InstanceNotFoundException | The exception thrown to indicate that no instances are returned by a provider. |
| System.Diagnostics.Eventing.Reader.EventLogException | Represents the base class for all the exceptions that are thrown when an error occurs while reading event log related information. |
| System.Diagnostics.Eventing.Reader.EventLogNotFoundException | Represents 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.EventLogReadingException | Represents 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.EventLogProviderDisabledException | Represents 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.EventLogInvalidDataException | Represents the exception thrown when an event provider publishes invalid data in an event. |
| System.TimeZoneNotFoundException | The exception that is thrown when a time zone cannot be found. |
| System.InvalidTimeZoneException | The exception that is thrown when time zone information is invalid. |
| System.Threading.LockRecursionException | The 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.ChangeConflictException | Thrown when an update fails because database values have been updated since the client last read them. |
| System.Data.Linq.DuplicateKeyException | Thrown 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.ForeignKeyReferenceAlreadyHasValueException | Thrown when an attempt is made to change a foreign key but the entity is already loaded. |
System.DirectoryServices.AccountManagement
| System.DirectoryServices.AccountManagement.MultipleMatchesException | This 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.NoMatchingPrincipalException | This exception is thrown when no matching principal object could be found with the specified parameters. |
| System.DirectoryServices.AccountManagement.PasswordException | This exception is thrown when a password does not meet complexity requirements. |
| System.DirectoryServices.AccountManagement.PrincipalExistsException | Thrown 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.PrincipalServerDownException | Thrown when the server |
| System.DirectoryServices.AccountManagement.PrincipalOperationException | Thrown when ADSI returns an error during an operation to update the store. |
System.Management.Instrumentation
| System.Management.Instrumentation.WmiProviderInstallationException | Represents an exception to throw when WMI provider installation fails. |
System.Net
| System.Net.PeerToPeer.PeerToPeerException | Represents the exceptions that are thrown when an error is raised by the Peer-to-Peer Infrastructure. |
System.ServiceModel.Web
| System.UriTemplateMatchException | Represents an error when matching a to a . |
System.Web.Extensions
| System.Web.Query.Dynamic.ParseException | Represents errors that occur when a control parses values to create a query. |
| System.Web.UI.WebControls.LinqDataSourceValidationException | Describes 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.PersistenceException | This exception is thrown by a when general connectivity errors are encountered. |
| System.ServiceModel.Persistence.InstanceLockException | This 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.InstanceNotFoundException | This 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 |