CheckoutException Class
.NET Framework 3.0
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.
Namespace: System.ComponentModel.Design
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ Public Class CheckoutException Inherits ExternalException 'Usage Dim instance As CheckoutException
/** @attribute SerializableAttribute() */ public class CheckoutException extends ExternalException
SerializableAttribute public class CheckoutException extends ExternalException
Not applicable.
The following code example demonstrates throwing a CheckoutException.
' Throws a checkout exception with a message and error code. Throw New CheckoutException("This is an example exception", 0)
// Throws a checkout exception with a message and error code.
throw new CheckoutException("This is an example exception", 0);
System.Object
System.Exception
System.SystemException
System.Runtime.InteropServices.ExternalException
System.ComponentModel.Design.CheckoutException
System.Exception
System.SystemException
System.Runtime.InteropServices.ExternalException
System.ComponentModel.Design.CheckoutException
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: