com.borland.primetime.vfs
Class ReadOnlyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.borland.primetime.vfs.VFSException
                          |
                          +--com.borland.primetime.vfs.ReadOnlyException

public class ReadOnlyException
extends VFSException

Signals that an attempt was made to modify a read-only buffer or file.

See Also:
Serialized Form

Constructor Summary
ReadOnlyException()
          Constructs a ReadOnlyException with code>null as its error detail message.
ReadOnlyException(java.lang.String description)
          Constructs a ReadOnlyException 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ReadOnlyException

public ReadOnlyException()
Constructs a ReadOnlyException with code>null as its error detail message.

ReadOnlyException

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