Class NoSuchNameException

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

public class NoSuchNameException extends Exception
A NoSuchNameException is thrown when a lookup of an object by name is performed and the name is not found.
Version:
1.0
Author:
Igor Goldenberg
See Also:
  • Constructor Details

    • NoSuchNameException

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

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