More information


de.spieleck.pcs.factory
Class FactoryException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--de.spieleck.pcs.factory.FactoryException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
NoSuchKeyException

public class FactoryException
extends java.lang.Exception

This exception is used to wrap an exception occuring during factoring an Object via a Factory

See Also:
Serialized Form

Constructor Summary
FactoryException()
          Creates a new instance of FactoryException without detail message.
FactoryException(java.lang.String msg)
          Constructs an instance of FactoryException 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

FactoryException

public FactoryException()
Creates a new instance of FactoryException without detail message.

FactoryException

public FactoryException(java.lang.String msg)
Constructs an instance of FactoryException with the specified detail message.
Parameters:
msg - the detail message.

More information