Class OperationTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.dassault_systemes.modeler.foundation.util.OperationTimeoutException
com.nomagic.magicdraw.foundation.util.OperationTimeoutException
- All Implemented Interfaces:
Serializable
public class OperationTimeoutException
extends com.dassault_systemes.modeler.foundation.util.OperationTimeoutException
Exception thrown when a blocking operation times out.
- Version:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates and initializes a newOperationTimeoutExceptioninstance.OperationTimeoutException(String message) Creates and initializes a newOperationTimeoutExceptioninstance.OperationTimeoutException(String message, Throwable cause) Creates and initializes a newOperationTimeoutExceptioninstance.Creates and initializes a newOperationTimeoutExceptioninstance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OperationTimeoutException
public OperationTimeoutException()Creates and initializes a newOperationTimeoutExceptioninstance. -
OperationTimeoutException
Creates and initializes a newOperationTimeoutExceptioninstance.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
OperationTimeoutException
Creates and initializes a newOperationTimeoutExceptioninstance.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
OperationTimeoutException
Creates and initializes a newOperationTimeoutExceptioninstance.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-