SALT.exceptions
Class WriterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by SALT.exceptions.WriterException
All Implemented Interfaces:
java.io.Serializable

public class WriterException
extends java.lang.Exception

The class WriterException and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch.

See Also:
Exception, Serialized Form

Constructor Summary
WriterException()
          Constructs a new exception with null as its detail message.
WriterException(java.lang.String message)
          Constructs a new exception with the specified detail message.
WriterException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
WriterException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause and a detail message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WriterException

public WriterException()
Constructs a new exception with null as its detail message.


WriterException

public WriterException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message

WriterException

public WriterException(java.lang.String message,
                       java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message
cause - the cause

WriterException

public WriterException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message.

Parameters:
cause - the cause