Class FileWriteException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sm.smtools.exceptions.FileWriteException
All Implemented Interfaces:
java.io.Serializable

public final class FileWriteException
extends java.lang.Exception
Indicates that an attempt to write a value to the file denoted by the specified filename has failed.

Note that this class cannot be subclassed!

Version:
22/01/2004
Author:
Sven Maerivoet
See Also:
Serialized Form
  • Constructor Summary

    Constructors
    Constructor Description
    FileWriteException​(java.lang.String filename, java.lang.String value)
    Constructs a FileWriteException object, based on the specified filename and the value that should have been written.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getFilename()
    Returns the name of the file this exception corresponds to.
    java.lang.String getValue()
    Returns the value that should have been written.

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • FileWriteException

      public FileWriteException​(java.lang.String filename, java.lang.String value)
      Constructs a FileWriteException object, based on the specified filename and the value that should have been written.
      Parameters:
      filename - the name of the file this exception corresponds to
      value - the value that should have been written
  • Method Details

    • getFilename

      public java.lang.String getFilename()
      Returns the name of the file this exception corresponds to.
      Returns:
      the name of the file this exception corresponds to
    • getValue

      public java.lang.String getValue()
      Returns the value that should have been written.
      Returns:
      the value that should have been written