ADK CVS

tryllian.are.security
Class DNAComposerException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bytryllian.are.security.DNAComposerException
All Implemented Interfaces:
java.io.Serializable

public class DNAComposerException
extends java.lang.Exception

High-level exception type for something going wrong related to DNA creation. Follows the pattern as described in 'Effective Java' for wrapping exceptions.

See Also:
Serialized Form

Constructor Summary
DNAComposerException()
          Creates a new DNAComposerException without detail message.
DNAComposerException(java.lang.String msg)
          Constructs a DNAComposerException with the specified detail message.
DNAComposerException(java.lang.String msg, java.lang.Throwable t)
          Constructs a DNAComposerException with the specified detail message, wrapping a lower-level exception.
DNAComposerException(java.lang.Throwable t)
          Constructs a DNAComposerException wrapping a lower-level exception.
 
Method Summary
 java.lang.Throwable getCause()
          Get the underlying exception wrapped by this DNAComposerException.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, 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

DNAComposerException

public DNAComposerException()
Creates a new DNAComposerException without detail message.


DNAComposerException

public DNAComposerException(java.lang.String msg)
Constructs a DNAComposerException with the specified detail message.

Parameters:
msg - the detail message.

DNAComposerException

public DNAComposerException(java.lang.Throwable t)
Constructs a DNAComposerException wrapping a lower-level exception.

Parameters:
t - the wrapped exception

DNAComposerException

public DNAComposerException(java.lang.String msg,
                            java.lang.Throwable t)
Constructs a DNAComposerException with the specified detail message, wrapping a lower-level exception.

Parameters:
msg - the detail message
t - the wrapped exception
Method Detail

getCause

public java.lang.Throwable getCause()
Get the underlying exception wrapped by this DNAComposerException.

Returns:
the wrapped exception (may be null if there was none).

Copyright 2005, Tryllian Solutions B.V.