Class FinderException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.j_spaces.core.client.FinderException
All Implemented Interfaces:
Serializable

public class FinderException extends Exception
A FinderException is thrown if an attempt to find space or container fails.
Version:
2.5
Author:
Igor Goldenberg
See Also:
  • Constructor Details

    • FinderException

      public FinderException()
      Constructs a FinderException with null as its error detail message.
    • FinderException

      public FinderException(String message)
      Constructs a FinderException with the specified detail message. The string s can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable.
      Parameters:
      message - the detail message.
    • FinderException

      public FinderException(String message, Throwable cause)
      Constructs a new FinderException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      4.0
    • FinderException

      public FinderException(Throwable cause)
      Constructs a new FinderException with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      6.5