package org.jboss.tm;
import java.io.PrintStream;
import java.io.PrintWriter;
import javax.ejb.TransactionRolledbackLocalException;
import javax.transaction.RollbackException;
import org.jboss.util.NestedThrowable;
public class JBossTransactionRolledbackLocalException
extends TransactionRolledbackLocalException
implements NestedThrowable
{
public JBossTransactionRolledbackLocalException()
{
super();
}
public JBossTransactionRolledbackLocalException(final Exception e)
{
super(null, e);
}
public JBossTransactionRolledbackLocalException(final String message)
{
super(message);
}
public JBossTransactionRolledbackLocalException(final String message, final Exception e)
{
super(message, e);
}
public Throwable getNested()
{
return getCausedByException();
}
public Throwable getCause()
{
return getCausedByException();
}
public String getMessage() {
return NestedThrowable.Util.getMessage(super.getMessage(), getCausedByException());
}
public void printStackTrace(final PrintStream stream)
{
if (getCausedByException() == null || NestedThrowable.PARENT_TRACE_ENABLED)
{
super.printStackTrace(stream);
}
NestedThrowable.Util.print(getCausedByException(), stream);
}
public void printStackTrace(final PrintWriter writer)
{
if (getCausedByException() == null || NestedThrowable.PARENT_TRACE_ENABLED)
{
super.printStackTrace(writer);
}
NestedThrowable.Util.print(getCausedByException(), writer);
}
public void printStackTrace()
{
printStackTrace(System.err);
}
}