Package com.sun.jna.platform.win32.COM
Class COMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sun.jna.platform.win32.COM.COMException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- COMInvokeException
Exception class for all COM related classes.
- Author:
- Tobias Wolf, wolf.tobias@gmx.net
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionInstantiates a new automation exception.COMException(String message) Instantiates a new automation exception.COMException(String message, WinNT.HRESULT hresult) Instantiates a new automation exception.COMException(String message, Throwable cause) Instantiates a new automation exception.COMException(Throwable cause) Instantiates a new automation exception.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
COMExceptionpublic COMException()Instantiates a new automation exception.
- 
COMExceptionInstantiates a new automation exception.- Parameters:
- message- the message
 
- 
COMExceptionInstantiates a new automation exception.- Parameters:
- cause- the cause
 
- 
COMExceptionInstantiates a new automation exception.- Parameters:
- message- the message
- cause- the cause
 
- 
COMExceptionInstantiates a new automation exception.- Parameters:
- message- the message
- hresult- HRESULT that lead to the creation of the COMException
 
 
- 
- 
Method Details- 
getHresult- Returns:
- the HRESULT that lead to thie COMException or NULL if the COMException as not directly caused by a native call
 
- 
matchesErrorCodepublic boolean matchesErrorCode(int errorCode) - Parameters:
- errorCode-
- Returns:
- true if the exception has an associated HRESULT and that HRESULT matches the supplied error code
 
 
-