Class ComError
public class ComError extends OutOfMemoryError
{
// Constructors
public ComError();
public ComError(String s);
}
This class signals errors in linking Java and Component Object Model (COM) objects. ComError extends the OutOfMemoryError class to achieve backward compatibility with Microsoft SDK for Java 1.0.
OutOfMemoryError
|
+--ComError
public ComError();
Creates an empty ComError object.
public ComError(String s);
Creates a ComError object that contains a specific detail message.
Parameter | Description |
s
| The detail message that describes the exception.
|