FileDocCategorySizeDatePackage
TimeLimitExceededException.javaAPI DocJava SE 5 API1429Fri Aug 26 14:57:40 BST 2005javax.naming

TimeLimitExceededException

public class TimeLimitExceededException extends LimitExceededException
This exception is thrown when a method does not terminate within the specified time limit. This can happen, for example, if the user specifies that the method should take no longer than 10 seconds, and the method fails to complete with 10 seconds.

Synchronization and serialization issues that apply to NamingException apply directly here.

author
Rosanna Lee
author
Scott Seligman
version
1.7 03/12/19
since
1.3

Fields Summary
private static final long
serialVersionUID
Use serialVersionUID from JNDI 1.1.1 for interoperability
Constructors Summary
public TimeLimitExceededException()
Constructs a new instance of TimeLimitExceededException. All fields default to null.

	super();
    
public TimeLimitExceededException(String explanation)
Constructs a new instance of TimeLimitExceededException using the argument supplied.

param
explanation possibly null detail about this exception.
see
java.lang.Throwable#getMessage

	super(explanation);
    
Methods Summary