Save This Page
Home » jboss-5.0.0.CR1-src » org.jboss.blocks » ejb » [javadoc | source]
org.jboss.blocks.ejb
public class: NestedCreateException [javadoc | source]
java.lang.Object
   javax.ejb.CreateException
      org.jboss.blocks.ejb.NestedCreateException

All Implemented Interfaces:
    NestedThrowable

A nested EJB create exception.
Field Summary
protected final  Throwable nested    The nested throwable 
Constructor:
 public NestedCreateException() 
 public NestedCreateException(String msg) 
    Construct a NestedCreateException with the specified detail message.
    Parameters:
    msg - Detail message.
 public NestedCreateException(Throwable nested) 
    Construct a NestedCreateException with the specified nested Throwable.
    Parameters:
    nested - Nested Throwable.
 public NestedCreateException(String msg,
    Throwable nested) 
    Construct a NestedCreateException with the specified detail message and nested Throwable.
    Parameters:
    msg - Detail message.
    nested - Nested Throwable.
Method from org.jboss.blocks.ejb.NestedCreateException Summary:
getCause,   getMessage,   getNested,   printStackTrace,   printStackTrace,   printStackTrace
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jboss.blocks.ejb.NestedCreateException Detail:
 public final Throwable getCause() 
 public String getMessage() 
    Returns the composite throwable message.
 public final Throwable getNested() 
    Return the nested Throwable.
 public  void printStackTrace() 
    Prints the composite message and the embedded stack trace to System.err.
 public  void printStackTrace(PrintStream stream) 
    Prints the composite message and the embedded stack trace to the specified print stream.
 public  void printStackTrace(PrintWriter writer) 
    Prints the composite message and the embedded stack trace to the specified print writer.