com.novell.java.io
Class NoSubordinateAccessException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.novell.java.io.NoSubordinateAccessException

public class NoSubordinateAccessException
extends java.io.IOException

Signals that subordinate streams access to the given device is not supported.

The DataAccessable interface provides support for Input/Output streams and random access to the data of the DataAccessable object. There are two modes of opening access to these devices. First is to open the actual DataAccessable object. The second is to open subordinate access to the DataAccessable object. Some data objects, such as a File, might not support the second type of open (subordinate) and would throw this exception.

See Also:
RandomAccess, NInputStream, NOutputStream

Constructor Summary
NoSubordinateAccessException()
          Constructs a NoSubordinateAccessException object with no detail message.
NoSubordinateAccessException(java.lang.String s)
          Constructs a NoSubordinateAccessException object with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSubordinateAccessException

public NoSubordinateAccessException()
Constructs a NoSubordinateAccessException object with no detail message.

NoSubordinateAccessException

public NoSubordinateAccessException(java.lang.String s)
Constructs a NoSubordinateAccessException object with the specified detail message.
Parameters:
s - The detail message.